diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj
index 5a31813529a5..bf2cbd32cf92 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs
index 8aae044715c1..552b87f71030 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs
@@ -12,24 +12,15 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-using System;
-using System.Diagnostics;
-using System.IO;
-using System.Linq;
-using Microsoft.Azure.Commands.Common.Authentication;
-using Microsoft.Azure.Test.HttpRecorder;
+using Microsoft.Azure.Commands.TestFx;
using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
-using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
+using System.Linq;
using Xunit;
-using Microsoft.Azure.Commands.TestFx;
using Xunit.Abstractions;
namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests
{
- using Microsoft.Azure.ServiceManagement.Common.Models;
- using ApiManagementClient = Management.ApiManagement.ApiManagementClient;
-
public class ApiManagementTestRunner
{
protected readonly ITestRunner TestRunner;
@@ -67,7 +58,7 @@ public ApiManagementTests(Xunit.Abstractions.ITestOutputHelper output) : base(ou
using (var context = MockContext.Start("ApiManagementTests", "CreateApiManagementService"))
{
var resourceManagementClient = ApiManagementHelper.GetResourceManagementClient(context);
- ResourceGroupName = "powershelltest";
+ ResourceGroupName = "Apim-NetSdk-20210801";
Location = "CentralUSEUAP";
if (string.IsNullOrWhiteSpace(ResourceGroupName))
@@ -76,7 +67,7 @@ public ApiManagementTests(Xunit.Abstractions.ITestOutputHelper output) : base(ou
resourceManagementClient.TryRegisterResourceGroup(Location, ResourceGroupName);
}
- ApiManagementServiceName = "powershellsdkservice";
+ ApiManagementServiceName = "powershellsdkservicetest";
ApiManagementHelper.GetApiManagementClient(context).TryCreateApiService(ResourceGroupName, ApiManagementServiceName, Location);
}
}
@@ -86,6 +77,20 @@ public string[] ConvertScriptName(params string[] scripts)
return scripts.Select(s => s + $" {ResourceGroupName} {ApiManagementServiceName}").ToArray();
}
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void ApiCrudGraphQLTest()
+ {
+ TestRunner.RunTestScript(ConvertScriptName("Api-CrudGraphQlTest"));
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void ApiCrudWebSocketTest()
+ {
+ TestRunner.RunTestScript(ConvertScriptName("Api-CrudWebSocketTest"));
+ }
+
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void ApiCrudTest()
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
index f0c33e2a7c97..6804d4d2150c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
@@ -165,6 +165,246 @@ function Api-CrudTest {
}
}
+function Api-CrudGraphQlTest {
+ Param($resourceGroupName, $serviceName)
+
+ $context = New-AzApiManagementContext -ResourceGroupName $resourceGroupName -ServiceName $serviceName
+
+ # create new api
+ $newApiId = getAssetName
+ try {
+ $newApiName = getAssetName
+ $newApiDescription = getAssetName
+ $newApiPath = getAssetName
+ $newApiServiceUrl = "http://newechoapi.cloudapp.net/newapi"
+ $subscriptionKeyParametersHeader = getAssetName
+ $subscriptionKeyQueryStringParamName = getAssetName
+ $newApiType = "graphql"
+ $newApiTermsOfServiceUrl = "microsoft.com"
+ $newApiContactName = getAssetName
+ $newApiContactUrl = "microsoft.com"
+ $newApiContactEmail = "contoso@microsoft.com"
+ $newApiLicenseName = getAssetName
+ $newApiLicenseUrl = "microsoft.com"
+
+ $newApi = New-AzApiManagementApi -Context $context -ApiId $newApiId -Name $newApiName -Description $newApiDescription `
+ -Protocols @("http", "https") -Path $newApiPath -ServiceUrl $newApiServiceUrl `
+ -SubscriptionKeyHeaderName $subscriptionKeyParametersHeader -SubscriptionKeyQueryParamName $subscriptionKeyQueryStringParamName `
+ -ApiType $newApiType -TermsOfServiceUrl $newApiTermsOfServiceUrl -ContactName $newApiContactName -ContactUrl $newApiContactUrl `
+ -ContactEmail $newApiContactEmail -LicenseName $newApiLicenseName -LicenseUrl $newApiLicenseUrl
+
+ Assert-AreEqual $newApiId $newApi.ApiId
+ Assert-AreEqual $newApiName $newApi.Name
+ Assert-AreEqual $newApiDescription.Description
+ Assert-AreEqual $newApiServiceUrl $newApi.ServiceUrl
+ Assert-AreEqual $newApiPath $newApi.Path
+ Assert-AreEqual 2 $newApi.Protocols.Length
+ Assert-AreEqual http $newApi.Protocols[0]
+ Assert-AreEqual https $newApi.Protocols[1]
+ Assert-Null $newApi.AuthorizationServerId
+ Assert-Null $newApi.AuthorizationScope
+ Assert-AreEqual $subscriptionKeyParametersHeader $newApi.SubscriptionKeyHeaderName
+ Assert-AreEqual $subscriptionKeyQueryStringParamName $newApi.SubscriptionKeyQueryParamName
+ Assert-AreEqual $newApiType $newApi.ApiType
+ Assert-AreEqual $newApiTermsOfServiceUrl $newApi.TermsOfServiceUrl
+ Assert-AreEqual $newApiContactName $newApi.ContactName
+ Assert-AreEqual $newApiContactUrl $newApi.ContactUrl
+ Assert-AreEqual $newApiContactEmail $newApi.ContactEmail
+ Assert-AreEqual $newApiLicenseName $newApi.LicenseName
+ Assert-AreEqual $newApiLicenseUrl $newApi.LicenseUrl
+
+ # set api
+ $newApiName = getAssetName
+ $newApiDescription = getAssetName
+ $newApiPath = getAssetName
+ $newApiServiceUrl = "http://newechoapi.cloudapp.net/newapinew"
+ $subscriptionKeyParametersHeader = getAssetName
+ $subscriptionKeyQueryStringParamName = getAssetName
+ $newApiType = "graphql"
+ $newApiTermsOfServiceUrl = "changed.microsoft.com"
+ $newApiContactName = getAssetName
+ $newApiContactUrl = "changed.microsoft.com"
+ $newApiContactEmail = "changed.contoso@microsoft.com"
+ $newApiLicenseName = getAssetName
+ $newApiLicenseUrl = "changed.microsoft.com"
+
+ $newApi = Set-AzApiManagementApi -Context $context -ApiId $newApiId -Name $newApiName -Description $newApiDescription `
+ -Protocols @("https") -Path $newApiPath -ServiceUrl $newApiServiceUrl `
+ -SubscriptionKeyHeaderName $subscriptionKeyParametersHeader -SubscriptionKeyQueryParamName $subscriptionKeyQueryStringParamName `
+ -PassThru `
+ -ApiType $newApiType -TermsOfServiceUrl $newApiTermsOfServiceUrl -ContactName $newApiContactName -ContactUrl $newApiContactUrl `
+ -ContactEmail $newApiContactEmail -LicenseName $newApiLicenseName -LicenseUrl $newApiLicenseUrl
+
+ Assert-AreEqual $newApiId $newApi.ApiId
+ Assert-AreEqual $newApiName $newApi.Name
+ Assert-AreEqual $newApiDescription $newApi.Description
+ Assert-AreEqual $newApiServiceUrl $newApi.ServiceUrl
+ Assert-AreEqual $newApiPath $newApi.Path
+ Assert-AreEqual 1 $newApi.Protocols.Length
+ Assert-AreEqual https $newApi.Protocols[0]
+ Assert-Null $newApi.AuthorizationServerId
+ Assert-Null $newApi.AuthorizationScope
+ Assert-AreEqual $subscriptionKeyParametersHeader $newApi.SubscriptionKeyHeaderName
+ Assert-AreEqual $subscriptionKeyQueryStringParamName $newApi.SubscriptionKeyQueryParamName
+ Assert-AreEqual $newApiType $newApi.ApiType
+ Assert-AreEqual $newApiTermsOfServiceUrl $newApi.TermsOfServiceUrl
+ Assert-AreEqual $newApiContactName $newApi.ContactName
+ Assert-AreEqual $newApiContactUrl $newApi.ContactUrl
+ Assert-AreEqual $newApiContactEmail $newApi.ContactEmail
+ Assert-AreEqual $newApiLicenseName $newApi.LicenseName
+ Assert-AreEqual $newApiLicenseUrl $newApi.LicenseUrl
+
+
+ $product = Get-AzApiManagementProduct -Context $context | Select-Object -First 1
+ Add-AzApiManagementApiToProduct -Context $context -ApiId $newApiId -ProductId $product.ProductId
+
+ #get by product id
+ $found = 0
+ $apis = Get-AzApiManagementApi -Context $context -ProductId $product.ProductId
+ for ($i = 0; $i -lt $apis.Count; $i++) {
+ if ($apis[$i].ApiId -eq $newApiId) {
+ $found = 1
+ }
+ }
+ Assert-AreEqual 1 $found
+
+ Remove-AzApiManagementApiFromProduct -Context $context -ApiId $newApiId -ProductId $product.ProductId
+ $found = 0
+ $apis = Get-AzApiManagementApi -Context $context -ProductId $product.ProductId
+ for ($i = 0; $i -lt $apis.Count; $i++) {
+ if ($apis[$i].ApiId -eq $newApiId) {
+ $found = 1
+ }
+ }
+ Assert-AreEqual 0 $found
+ }
+ finally {
+ # remove created api
+ $removed = Remove-AzApiManagementApi -Context $context -ApiId $newApiId -PassThru
+ Assert-True { $removed }
+ }
+}
+
+function Api-CrudWebsocketTest {
+ Param($resourceGroupName, $serviceName)
+
+ $context = New-AzApiManagementContext -ResourceGroupName $resourceGroupName -ServiceName $serviceName
+
+ # create new api
+ $newApiId = getAssetName
+ try {
+ $newApiName = getAssetName
+ $newApiDescription = getAssetName
+ $newApiPath = getAssetName
+ $newApiServiceUrl = "ws://newechoapi.cloudapp.net/newapi"
+ $subscriptionKeyParametersHeader = getAssetName
+ $subscriptionKeyQueryStringParamName = getAssetName
+ $newApiType = "websocket"
+ $newApiTermsOfServiceUrl = "microsoft.com"
+ $newApiContactName = getAssetName
+ $newApiContactUrl = "microsoft.com"
+ $newApiContactEmail = "contoso@microsoft.com"
+ $newApiLicenseName = getAssetName
+ $newApiLicenseUrl = "microsoft.com"
+
+ $newApi = New-AzApiManagementApi -Context $context -ApiId $newApiId -Name $newApiName -Description $newApiDescription `
+ -Protocols @("ws", "wss") -Path $newApiPath -ServiceUrl $newApiServiceUrl `
+ -SubscriptionKeyHeaderName $subscriptionKeyParametersHeader -SubscriptionKeyQueryParamName $subscriptionKeyQueryStringParamName `
+ -ApiType $newApiType -TermsOfServiceUrl $newApiTermsOfServiceUrl -ContactName $newApiContactName -ContactUrl $newApiContactUrl `
+ -ContactEmail $newApiContactEmail -LicenseName $newApiLicenseName -LicenseUrl $newApiLicenseUrl
+
+ Assert-AreEqual $newApiId $newApi.ApiId
+ Assert-AreEqual $newApiName $newApi.Name
+ Assert-AreEqual $newApiDescription.Description
+ Assert-AreEqual $newApiServiceUrl $newApi.ServiceUrl
+ Assert-AreEqual $newApiPath $newApi.Path
+ Assert-AreEqual 2 $newApi.Protocols.Length
+ Assert-AreEqual ws $newApi.Protocols[0]
+ Assert-AreEqual wss $newApi.Protocols[1]
+ Assert-Null $newApi.AuthorizationServerId
+ Assert-Null $newApi.AuthorizationScope
+ Assert-AreEqual $subscriptionKeyParametersHeader $newApi.SubscriptionKeyHeaderName
+ Assert-AreEqual $subscriptionKeyQueryStringParamName $newApi.SubscriptionKeyQueryParamName
+ Assert-AreEqual $newApiType $newApi.ApiType
+ Assert-AreEqual $newApiTermsOfServiceUrl $newApi.TermsOfServiceUrl
+ Assert-AreEqual $newApiContactName $newApi.ContactName
+ Assert-AreEqual $newApiContactUrl $newApi.ContactUrl
+ Assert-AreEqual $newApiContactEmail $newApi.ContactEmail
+ Assert-AreEqual $newApiLicenseName $newApi.LicenseName
+ Assert-AreEqual $newApiLicenseUrl $newApi.LicenseUrl
+
+ # set api
+ $newApiName = getAssetName
+ $newApiDescription = getAssetName
+ $newApiPath = getAssetName
+ $newApiServiceUrl = "ws://newechoapi.cloudapp.net/newapinew"
+ $subscriptionKeyParametersHeader = getAssetName
+ $subscriptionKeyQueryStringParamName = getAssetName
+ $newApiType = "websocket"
+ $newApiTermsOfServiceUrl = "changed.microsoft.com"
+ $newApiContactName = getAssetName
+ $newApiContactUrl = "changed.microsoft.com"
+ $newApiContactEmail = "changed.contoso@microsoft.com"
+ $newApiLicenseName = getAssetName
+ $newApiLicenseUrl = "changed.microsoft.com"
+
+ $newApi = Set-AzApiManagementApi -Context $context -ApiId $newApiId -Name $newApiName -Description $newApiDescription `
+ -Protocols @("ws") -Path $newApiPath -ServiceUrl $newApiServiceUrl `
+ -SubscriptionKeyHeaderName $subscriptionKeyParametersHeader -SubscriptionKeyQueryParamName $subscriptionKeyQueryStringParamName `
+ -PassThru `
+ -ApiType $newApiType -TermsOfServiceUrl $newApiTermsOfServiceUrl -ContactName $newApiContactName -ContactUrl $newApiContactUrl `
+ -ContactEmail $newApiContactEmail -LicenseName $newApiLicenseName -LicenseUrl $newApiLicenseUrl
+
+ Assert-AreEqual $newApiId $newApi.ApiId
+ Assert-AreEqual $newApiName $newApi.Name
+ Assert-AreEqual $newApiDescription $newApi.Description
+ Assert-AreEqual $newApiServiceUrl $newApi.ServiceUrl
+ Assert-AreEqual $newApiPath $newApi.Path
+ Assert-AreEqual 1 $newApi.Protocols.Length
+ Assert-AreEqual ws $newApi.Protocols[0]
+ Assert-Null $newApi.AuthorizationServerId
+ Assert-Null $newApi.AuthorizationScope
+ Assert-AreEqual $subscriptionKeyParametersHeader $newApi.SubscriptionKeyHeaderName
+ Assert-AreEqual $subscriptionKeyQueryStringParamName $newApi.SubscriptionKeyQueryParamName
+ Assert-AreEqual $newApiType $newApi.ApiType
+ Assert-AreEqual $newApiTermsOfServiceUrl $newApi.TermsOfServiceUrl
+ Assert-AreEqual $newApiContactName $newApi.ContactName
+ Assert-AreEqual $newApiContactUrl $newApi.ContactUrl
+ Assert-AreEqual $newApiContactEmail $newApi.ContactEmail
+ Assert-AreEqual $newApiLicenseName $newApi.LicenseName
+ Assert-AreEqual $newApiLicenseUrl $newApi.LicenseUrl
+
+
+ $product = Get-AzApiManagementProduct -Context $context | Select-Object -First 1
+ Add-AzApiManagementApiToProduct -Context $context -ApiId $newApiId -ProductId $product.ProductId
+
+ #get by product id
+ $found = 0
+ $apis = Get-AzApiManagementApi -Context $context -ProductId $product.ProductId
+ for ($i = 0; $i -lt $apis.Count; $i++) {
+ if ($apis[$i].ApiId -eq $newApiId) {
+ $found = 1
+ }
+ }
+ Assert-AreEqual 1 $found
+
+ Remove-AzApiManagementApiFromProduct -Context $context -ApiId $newApiId -ProductId $product.ProductId
+ $found = 0
+ $apis = Get-AzApiManagementApi -Context $context -ProductId $product.ProductId
+ for ($i = 0; $i -lt $apis.Count; $i++) {
+ if ($apis[$i].ApiId -eq $newApiId) {
+ $found = 1
+ }
+ }
+ Assert-AreEqual 0 $found
+ }
+ finally {
+ # remove created api
+ $removed = Remove-AzApiManagementApi -Context $context -ApiId $newApiId -PassThru
+ Assert-True { $removed }
+ }
+}
+
<#
.SYNOPSIS
Tests CRUD operations for Cloning an API into a ApiVersionSet.
@@ -789,7 +1029,6 @@ function Operations-CrudTest {
$newOperationRequestParamType = "string"
$newOperationRequestRepresentationContentType = "application/json"
- $newOperationRequestRepresentationSample = getAssetName
$newOperationResponseDescription = getAssetName
$newOperationResponseStatusCode = 1980785443;
@@ -834,7 +1073,15 @@ function Operations-CrudTest {
#create request representation
$requestRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation
$requestRepresentation.ContentType = $newOperationRequestRepresentationContentType
- $requestRepresentation.Sample = $newOperationRequestRepresentationSample
+ $requestRepresentation.TypeName = "the type name"
+
+ $exp = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample
+ $exp.Value = "default"
+ $exp.Description = "My default request example"
+ $exp.ExternalValue = "https://contoso.com"
+ $exp.Summary = "default"
+ $requestRepresentation.Examples = @($exp)
+
$request.Representations = @($requestRepresentation)
#create response
@@ -845,12 +1092,12 @@ function Operations-CrudTest {
#create response representation
$responseRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation
$responseRepresentation.ContentType = $newOperationResponseRepresentationContentType
- $responseRepresentation.Sample = $newOperationResponseRepresentationSample
+ $responseRepresentation.Examples = @($exp)
$response.Representations = @($responseRepresentation)
$newOperation = New-AzApiManagementOperation –Context $context –ApiId $api.ApiId –OperationId $newOperationId –Name $newOperationName `
–Method $newOperationMethod –UrlTemplate $newperationUrlTemplate –Description $newOperationDescription –TemplateParameters @($rid, $query) –Request $request –Responses @($response)
-
+
Assert-AreEqual $api.ApiId $newOperation.ApiId
Assert-AreEqual $newOperationId $newOperation.OperationId
Assert-AreEqual $newOperationName $newOperation.Name
@@ -891,7 +1138,12 @@ function Operations-CrudTest {
Assert-NotNull $newOperation.Responses[0].Representations
Assert-AreEqual 1 $newOperation.Responses[0].Representations.Count
Assert-AreEqual $newOperationResponseRepresentationContentType $newOperation.Responses[0].Representations[0].ContentType
- Assert-AreEqual $newOperationResponseRepresentationSample $newOperation.Responses[0].Representations[0].Sample
+
+ Assert-NotNull $newOperation.Responses[0].Representations[0].Examples
+ Assert-AreEqual $exp.Value $newOperation.Responses[0].Representations[0].Examples[0].Value
+ Assert-AreEqual $exp.Description $newOperation.Responses[0].Representations[0].Examples[0].Description
+ Assert-AreEqual $exp.ExternalValue $newOperation.Responses[0].Representations[0].Examples[0].ExternalValue
+ Assert-AreEqual $exp.Summary $newOperation.Responses[0].Representations[0].Examples[0].Summary
#change operation
@@ -959,7 +1211,7 @@ function Operations-CrudTest {
#create request representation
$requestRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation
$requestRepresentation.ContentType = $newOperationRequestRepresentationContentType
- $requestRepresentation.Sample = $newOperationRequestRepresentationSample
+ $requestRepresentation.Examples = @($exp)
$request.Representations = @($requestRepresentation)
#create response
@@ -970,7 +1222,7 @@ function Operations-CrudTest {
#create response representation
$responseRepresentation = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation
$responseRepresentation.ContentType = $newOperationResponseRepresentationContentType
- $responseRepresentation.Sample = $newOperationResponseRepresentationSample
+ $responseRepresentation.Examples = @($exp)
$response.Representations = @($responseRepresentation)
$newOperation = Set-AzApiManagementOperation –Context $context –ApiId $api.ApiId –OperationId $newOperationId –Name $newOperationName `
@@ -1016,7 +1268,12 @@ function Operations-CrudTest {
Assert-NotNull $newOperation.Responses[0].Representations
Assert-AreEqual 1 $newOperation.Responses[0].Representations.Count
Assert-AreEqual $newOperationResponseRepresentationContentType $newOperation.Responses[0].Representations[0].ContentType
- Assert-AreEqual $newOperationResponseRepresentationSample $newOperation.Responses[0].Representations[0].Sample
+
+ Assert-NotNull $newOperation.Responses[0].Representations[0].Examples
+ Assert-AreEqual $exp.Value $newOperation.Responses[0].Representations[0].Examples[0].Value
+ Assert-AreEqual $exp.Description $newOperation.Responses[0].Representations[0].Examples[0].Description
+ Assert-AreEqual $exp.ExternalValue $newOperation.Responses[0].Representations[0].Examples[0].ExternalValue
+ Assert-AreEqual $exp.Summary $newOperation.Responses[0].Representations[0].Examples[0].Summary
}
finally {
#remove created operation
@@ -2288,6 +2545,7 @@ function Logger-CrudTest {
$newLoggerDescription = getAssetName
$eventHubName = "powershell"
# Replace the Connection string with actual EventHub connection string when recording tests
+ # Remove after finished
$eventHubConnectionString = "Test-ConnectionString"
$logger = New-AzApiManagementLogger -Context $context -LoggerId $loggerId -Name $eventHubName -ConnectionString $eventHubConnectionString -Description $newLoggerDescription
@@ -2682,7 +2940,7 @@ function TenantGitConfiguration-CrudTest {
Assert-NotNull $tenantGitAccess
Assert-AreEqual $true $tenantGitAccess.Enabled
- Assert-AreEqual "git" $tenantGitAccess.id
+ Assert-AreEqual "/tenant/gitAccess" $tenantGitAccess.id
Assert-Null $tenantGitAccess.PrimaryKey
Assert-Null $tenantGitAccess.SecondaryKey
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/ApiManagementTests/CreateApiManagementService.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/ApiManagementTests/CreateApiManagementService.json
index 598697dd79fe..593febcad0ac 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/ApiManagementTests/CreateApiManagementService.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/ApiManagementTests/CreateApiManagementService.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUSEUAP\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4f8a81b7-e36b-49aa-8806-dadf433df839"
+ "797346bd-1f81-4a75-86ae-ff5bf58b32d8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.16002",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,14 +33,14 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAQXBQ=\""
+ "\"AAAAAAAbINc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "786917bd-027c-4368-976f-6e940df25954",
- "51416d4f-ddf8-46aa-a557-09c5f0f44f1e"
+ "a42f9270-7024-4437-8323-59e2bf476031",
+ "a42f9270-7024-4437-8323-59e2bf476031"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -49,19 +49,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "47a5e68a-55eb-4b98-98c0-18d7e43f6e2c"
+ "a42f9270-7024-4437-8323-59e2bf476031"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210726T232700Z:47a5e68a-55eb-4b98-98c0-18d7e43f6e2c"
+ "WESTUS:20220428T194914Z:a42f9270-7024-4437-8323-59e2bf476031"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 26 Jul 2021 23:26:59 GMT"
+ "Thu, 28 Apr 2022 19:49:13 GMT"
],
"Content-Length": [
- "2220"
+ "2709"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -70,26 +70,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAQXBQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-26T22:17:08.4631999Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.233.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest\",\r\n \"name\": \"powershellsdkservicetest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAbINc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-04-28T18:19:03.3540775Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservicetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservicetest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservicetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservicetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservicetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservicetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservicetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.46.25.98\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-31T22:35:58.8645583Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-04-28T18:19:03.1689244Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96deef19-4eec-44b3-b0df-0e35711d724d"
+ "d2db59c5-be60-4bed-bc75-f045fa0d976f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.16002",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -100,13 +100,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAQXBQ=\""
+ "\"AAAAAAAbINc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5e737740-6455-4f33-80bd-6aeccee61ece"
+ "4b162c3d-f84f-4132-b60a-063352ae7454"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -115,19 +115,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "7def110a-98b7-43b4-ada5-d9f90f9f2de6"
+ "4b162c3d-f84f-4132-b60a-063352ae7454"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210726T232700Z:7def110a-98b7-43b4-ada5-d9f90f9f2de6"
+ "WESTUS:20220428T194914Z:4b162c3d-f84f-4132-b60a-063352ae7454"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 26 Jul 2021 23:27:00 GMT"
+ "Thu, 28 Apr 2022 19:49:13 GMT"
],
"Content-Length": [
- "2220"
+ "2709"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -136,12 +136,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAQXBQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-26T22:17:08.4631999Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.233.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest\",\r\n \"name\": \"powershellsdkservicetest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAbINc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-04-28T18:19:03.3540775Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservicetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservicetest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservicetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservicetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservicetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservicetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservicetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.46.25.98\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-31T22:35:58.8645583Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-04-28T18:19:03.1689244Z\"\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json
index 2d1ba6b5b303..dc280399f85c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a3256ef-e92a-4faf-a536-a5e75fe1a5d1"
+ "3fdd30a2-165d-486b-9c20-c5a366f44540"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,25 +33,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d4b9f3f3-0967-48c5-b6ec-fc05f303d10f"
+ "81e66b87-5b3e-42a7-9616-c52a568c1025"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "edfeb251-c970-47ae-9878-9e4c82fa7137"
+ "81e66b87-5b3e-42a7-9616-c52a568c1025"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001642Z:edfeb251-c970-47ae-9878-9e4c82fa7137"
+ "WESTCENTRALUS:20220401T190305Z:81e66b87-5b3e-42a7-9616-c52a568c1025"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:42 GMT"
+ "Fri, 01 Apr 2022 19:03:05 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd2bd979-98fd-42ac-928f-02ecb1c365e1"
+ "09705250-14eb-45e6-82aa-969d92b80bc6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,7 +90,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/5E=\""
+ "\"AAAAAAAAC04=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -99,25 +99,25 @@
"nosniff"
],
"x-ms-request-id": [
- "802a034f-8877-4303-b256-152618236add"
+ "e0de0637-bf2f-4fc9-952f-d4354107c060"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "c5485321-f73d-410f-a0ad-a35c0589ce26"
+ "e0de0637-bf2f-4fc9-952f-d4354107c060"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001643Z:c5485321-f73d-410f-a0ad-a35c0589ce26"
+ "WESTCENTRALUS:20220401T190305Z:e0de0637-bf2f-4fc9-952f-d4354107c060"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:42 GMT"
+ "Fri, 01 Apr 2022 19:03:05 GMT"
],
"Content-Length": [
- "747"
+ "757"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +126,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d897e8e-24d4-4a57-883a-8adeaa93b212"
+ "8722cb0b-d808-464b-bf26-3502cba30c3b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,25 +162,25 @@
"nosniff"
],
"x-ms-request-id": [
- "0d603a0d-bc1c-46d9-93a7-ae6fc1a3a335"
+ "eb12cf75-59f0-4b75-b961-f64c38ae33ed"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "72c7905e-f67c-414f-90b4-5320ae4f280e"
+ "eb12cf75-59f0-4b75-b961-f64c38ae33ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001643Z:72c7905e-f67c-414f-90b4-5320ae4f280e"
+ "WESTCENTRALUS:20220401T190306Z:eb12cf75-59f0-4b75-b961-f64c38ae33ed"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:42 GMT"
+ "Fri, 01 Apr 2022 19:03:05 GMT"
],
"Content-Length": [
- "7816"
+ "7876"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -189,32 +189,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjY3Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczk4MTM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6561\",\r\n \"versionQueryName\": \"ps602\",\r\n \"displayName\": \"ps5592\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2642\",\r\n \"versionQueryName\": \"ps4770\",\r\n \"displayName\": \"ps2858\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a38dbc91-4c5b-4da7-bcf2-5fe664227003"
+ "81969f3b-2053-47cf-9f84-4c7fb87a60e0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "155"
+ "156"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAS0=\""
+ "\"AAAAAAAADO4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,25 +234,25 @@
"nosniff"
],
"x-ms-request-id": [
- "10f5d9ad-9471-443e-bdf1-8256641ab041"
+ "b57fdc09-f1f9-4190-b05d-554e11fe6821"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "f33b56b9-05c7-4c74-94d5-6b8df71aed20"
+ "b57fdc09-f1f9-4190-b05d-554e11fe6821"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001643Z:f33b56b9-05c7-4c74-94d5-6b8df71aed20"
+ "WESTCENTRALUS:20220401T190307Z:b57fdc09-f1f9-4190-b05d-554e11fe6821"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:43 GMT"
+ "Fri, 01 Apr 2022 19:03:07 GMT"
],
"Content-Length": [
- "448"
+ "459"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps6672\",\r\n \"properties\": {\r\n \"displayName\": \"ps5592\",\r\n \"description\": \"ps6561\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps602\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps9813\",\r\n \"properties\": {\r\n \"displayName\": \"ps2858\",\r\n \"description\": \"ps2642\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps4770\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6823\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps1273\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6595\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8084\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps1822\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps9036\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c309374f-2434-40e6-bd78-0f8b96bf7a24"
+ "05971c9b-2689-482a-a305-fe280e16ce44"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -297,7 +297,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABATE=\""
+ "\"AAAAAAAADPI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -306,25 +306,25 @@
"nosniff"
],
"x-ms-request-id": [
- "ab66eda0-b4bc-4f5f-a6f6-5be0a3be02a5"
+ "5773dec1-4d03-4afa-9a28-85a5fe80f5c3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "bcfd8825-9856-4627-a318-f935b33d74da"
+ "5773dec1-4d03-4afa-9a28-85a5fe80f5c3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001645Z:bcfd8825-9856-4627-a318-f935b33d74da"
+ "WESTCENTRALUS:20220401T190308Z:5773dec1-4d03-4afa-9a28-85a5fe80f5c3"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:44 GMT"
+ "Fri, 01 Apr 2022 19:03:08 GMT"
],
"Content-Length": [
- "768"
+ "778"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,23 +333,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5809\",\r\n \"properties\": {\r\n \"displayName\": \"ps1273\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6823\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6595\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6390\",\r\n \"properties\": {\r\n \"displayName\": \"ps1822\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8084\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps9036\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c309374f-2434-40e6-bd78-0f8b96bf7a24"
+ "05971c9b-2689-482a-a305-fe280e16ce44"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,7 +360,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABATE=\""
+ "\"AAAAAAAADPI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -369,25 +369,25 @@
"nosniff"
],
"x-ms-request-id": [
- "159af660-cd20-4401-9216-7ff26f0f3475"
+ "4cf1c914-ba35-41c3-a71d-c3eee6c08f1c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "31f0455f-19bc-469e-9376-ac84ab46140e"
+ "4cf1c914-ba35-41c3-a71d-c3eee6c08f1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001715Z:31f0455f-19bc-469e-9376-ac84ab46140e"
+ "WESTCENTRALUS:20220401T190338Z:4cf1c914-ba35-41c3-a71d-c3eee6c08f1c"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:14 GMT"
+ "Fri, 01 Apr 2022 19:03:38 GMT"
],
"Content-Length": [
- "768"
+ "778"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,26 +396,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5809\",\r\n \"properties\": {\r\n \"displayName\": \"ps1273\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6823\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6595\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6390\",\r\n \"properties\": {\r\n \"displayName\": \"ps1822\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8084\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps9036\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d5c81ec-ef51-49d0-be8f-a1195b1fcdaa"
+ "ea926a91-e897-483b-9e4e-031338b9485e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -432,25 +432,25 @@
"nosniff"
],
"x-ms-request-id": [
- "e2bdbbe5-3935-427e-bfa4-089b49304ce1"
+ "7e117457-2149-455b-bf2f-c81bc69cfb45"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "b00bcec6-810b-41cf-950d-0e0ef7a99324"
+ "7e117457-2149-455b-bf2f-c81bc69cfb45"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001715Z:b00bcec6-810b-41cf-950d-0e0ef7a99324"
+ "WESTCENTRALUS:20220401T190338Z:7e117457-2149-455b-bf2f-c81bc69cfb45"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:14 GMT"
+ "Fri, 01 Apr 2022 19:03:38 GMT"
],
"Content-Length": [
- "7804"
+ "7864"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/create-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/create-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL2NyZWF0ZS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4a58b6e-ba59-48cd-bc45-cb781acb373f"
+ "17909291-14e1-4ffb-a22d-37adf4f89018"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,7 +489,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAUE=\""
+ "\"AAAAAAAADP8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -498,25 +498,25 @@
"nosniff"
],
"x-ms-request-id": [
- "8d6db15a-be69-46df-ba0e-96c9d5e679da"
+ "72604fb2-e20a-4734-80e9-f4c21cc8cf4c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-correlation-request-id": [
- "9e4f9a0c-eb5f-49db-ade7-ebf2bc262ed2"
+ "72604fb2-e20a-4734-80e9-f4c21cc8cf4c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001715Z:9e4f9a0c-eb5f-49db-ade7-ebf2bc262ed2"
+ "WESTCENTRALUS:20220401T190339Z:72604fb2-e20a-4734-80e9-f4c21cc8cf4c"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:14 GMT"
+ "Fri, 01 Apr 2022 19:03:38 GMT"
],
"Content-Length": [
- "1267"
+ "1646"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -525,26 +525,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/modify-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/modify-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL21vZGlmeS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "facafb02-c13b-4096-ba37-66ec0712fb59"
+ "cb3583a4-87cb-4e8f-bee7-e3e0a660e219"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -555,7 +555,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAUA=\""
+ "\"AAAAAAAADP4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -564,25 +564,25 @@
"nosniff"
],
"x-ms-request-id": [
- "9eeee20c-f911-4e56-a4b2-105366250a43"
+ "597b0103-dfb6-44f8-9a2c-185e4e87d0e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-correlation-request-id": [
- "470209cc-5802-46bd-b3f3-b86b78bd970a"
+ "597b0103-dfb6-44f8-9a2c-185e4e87d0e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001715Z:470209cc-5802-46bd-b3f3-b86b78bd970a"
+ "WESTCENTRALUS:20220401T190339Z:597b0103-dfb6-44f8-9a2c-185e4e87d0e7"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:14 GMT"
+ "Fri, 01 Apr 2022 19:03:38 GMT"
],
"Content-Length": [
- "890"
+ "900"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -591,26 +591,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/remove-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/remove-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JlbW92ZS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e45ca3c-fb36-456f-8860-b850bf56174a"
+ "463f30b9-5864-4ea5-b901-b5bf8b36f949"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -621,7 +621,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAUI=\""
+ "\"AAAAAAAADQE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -630,25 +630,25 @@
"nosniff"
],
"x-ms-request-id": [
- "a27a0a12-7820-455a-9a1b-c35476f7e206"
+ "38746452-fc2b-4d90-88a7-6ab6ca313e0e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-correlation-request-id": [
- "92ad1e31-145d-4ba0-a671-dbd783372691"
+ "38746452-fc2b-4d90-88a7-6ab6ca313e0e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001715Z:92ad1e31-145d-4ba0-a671-dbd783372691"
+ "WESTCENTRALUS:20220401T190339Z:38746452-fc2b-4d90-88a7-6ab6ca313e0e"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:14 GMT"
+ "Fri, 01 Apr 2022 19:03:39 GMT"
],
"Content-Length": [
- "900"
+ "910"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -657,26 +657,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-header-only?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-header-only?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JldHJpZXZlLWhlYWRlci1vbmx5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75530ab4-2ec2-40b4-9ef7-e5348ca8d3fa"
+ "6f28602f-5af2-4d04-bcb3-b2e211154c84"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -687,7 +687,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAUM=\""
+ "\"AAAAAAAADQU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -696,25 +696,25 @@
"nosniff"
],
"x-ms-request-id": [
- "1a712534-bb95-4491-bfa1-3ccf5d4d9da2"
+ "53ad62ac-6872-4206-9e38-9703abc2664a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-correlation-request-id": [
- "6a6d3597-b906-41e0-b47e-d4c5b4b1bae8"
+ "53ad62ac-6872-4206-9e38-9703abc2664a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001715Z:6a6d3597-b906-41e0-b47e-d4c5b4b1bae8"
+ "WESTCENTRALUS:20220401T190339Z:53ad62ac-6872-4206-9e38-9703abc2664a"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:15 GMT"
+ "Fri, 01 Apr 2022 19:03:39 GMT"
],
"Content-Length": [
- "895"
+ "905"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -723,26 +723,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JldHJpZXZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03274a87-4e5f-4d55-a0c9-e64543c273aa"
+ "bf94474e-0c52-4c6c-a0ff-8a578b614443"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -753,7 +753,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAT4=\""
+ "\"AAAAAAAADP0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -762,25 +762,25 @@
"nosniff"
],
"x-ms-request-id": [
- "64ebeeb0-7774-481d-a23d-d267e2f3aa63"
+ "ad23d9a3-6bb2-4337-ab38-1abf54d3d7f3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11990"
],
"x-ms-correlation-request-id": [
- "2f355c8f-1c9f-45df-b2b5-f5ec09cb1655"
+ "ad23d9a3-6bb2-4337-ab38-1abf54d3d7f3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001716Z:2f355c8f-1c9f-45df-b2b5-f5ec09cb1655"
+ "WESTCENTRALUS:20220401T190339Z:ad23d9a3-6bb2-4337-ab38-1abf54d3d7f3"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:15 GMT"
+ "Fri, 01 Apr 2022 19:03:39 GMT"
],
"Content-Length": [
- "1474"
+ "1484"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -789,26 +789,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-resource-cached?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource-cached?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MC9vcGVyYXRpb25zL3JldHJpZXZlLXJlc291cmNlLWNhY2hlZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d5392f6-8236-4912-bc0f-9b866ac3ef53"
+ "425b9225-443a-48e0-b30a-a46da9421756"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -819,7 +819,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAT8=\""
+ "\"AAAAAAAADQM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -828,25 +828,25 @@
"nosniff"
],
"x-ms-request-id": [
- "a5206685-e717-43b7-a1d8-4ad4e74eff52"
+ "430e0d6d-b176-4bf0-bcef-c0aa0a82e77a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11989"
],
"x-ms-correlation-request-id": [
- "7449c3b8-cdfb-4720-a755-3f3ff93c2b27"
+ "430e0d6d-b176-4bf0-bcef-c0aa0a82e77a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001716Z:7449c3b8-cdfb-4720-a755-3f3ff93c2b27"
+ "WESTCENTRALUS:20220401T190339Z:430e0d6d-b176-4bf0-bcef-c0aa0a82e77a"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:15 GMT"
+ "Fri, 01 Apr 2022 19:03:39 GMT"
],
"Content-Length": [
- "1551"
+ "1561"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -855,32 +855,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTg0MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9579\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps6672\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps917\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps8476\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1906\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps9813\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps6463\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7493\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41b7fc7b-4609-4cdf-a29c-d92e0abaab25"
+ "48ec97f4-4674-481c-9832-09c58689e457"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "376"
+ "377"
]
},
"ResponseHeaders": {
@@ -891,7 +891,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAVY=\""
+ "\"AAAAAAAADRg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -900,25 +900,25 @@
"nosniff"
],
"x-ms-request-id": [
- "11ab242b-e177-4007-98a2-d80814324f08"
+ "f5324611-26a5-4027-a19b-a6e601b094d3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "0a935a50-3faa-41dc-b27e-59a10ba5f6f3"
+ "f5324611-26a5-4027-a19b-a6e601b094d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001717Z:0a935a50-3faa-41dc-b27e-59a10ba5f6f3"
+ "WESTCENTRALUS:20220401T190340Z:f5324611-26a5-4027-a19b-a6e601b094d3"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:16 GMT"
+ "Fri, 01 Apr 2022 19:03:40 GMT"
],
"Content-Length": [
- "1364"
+ "1396"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -927,23 +927,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2333\",\r\n \"properties\": {\r\n \"displayName\": \"ps917\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9579\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps8476\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672\",\r\n \"name\": \"ps5592\",\r\n \"description\": \"ps6561\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps602\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5841\",\r\n \"properties\": {\r\n \"displayName\": \"ps6463\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1906\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7493\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\",\r\n \"name\": \"ps2858\",\r\n \"description\": \"ps2642\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps4770\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTg0MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41b7fc7b-4609-4cdf-a29c-d92e0abaab25"
+ "48ec97f4-4674-481c-9832-09c58689e457"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -954,7 +954,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAVY=\""
+ "\"AAAAAAAADRg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -963,25 +963,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d24618a0-bab6-4acf-a07a-0cbb80c47a71"
+ "e3143051-64d6-4fbf-8672-c8c8346a2806"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11988"
],
"x-ms-correlation-request-id": [
- "68629107-08e8-43c1-80d4-a3dc3833c769"
+ "e3143051-64d6-4fbf-8672-c8c8346a2806"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001747Z:68629107-08e8-43c1-80d4-a3dc3833c769"
+ "WESTCENTRALUS:20220401T190410Z:e3143051-64d6-4fbf-8672-c8c8346a2806"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:47 GMT"
+ "Fri, 01 Apr 2022 19:04:10 GMT"
],
"Content-Length": [
- "987"
+ "1008"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -990,17 +990,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2333\",\r\n \"properties\": {\r\n \"displayName\": \"ps917\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9579\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps8476\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5841\",\r\n \"properties\": {\r\n \"displayName\": \"ps6463\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1906\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7493\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps6390?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNjM5MD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94b3455c-41b8-44f4-8e1a-ef4d9f628d90"
+ "b7ce8597-a892-4181-b695-244d8a71bf2f"
],
"If-Match": [
"*"
@@ -1009,10 +1009,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1029,7 +1029,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d5cc312a-2b5e-4825-8c3a-a679402d8296"
+ "318bdaf2-c0a2-4b92-be30-ab8e5e89d464"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1038,13 +1038,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "18fff16b-4ab3-4d24-b569-193e4272e5e0"
+ "318bdaf2-c0a2-4b92-be30-ab8e5e89d464"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001747Z:18fff16b-4ab3-4d24-b569-193e4272e5e0"
+ "WESTCENTRALUS:20220401T190411Z:318bdaf2-c0a2-4b92-be30-ab8e5e89d464"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:47 GMT"
+ "Fri, 01 Apr 2022 19:04:10 GMT"
],
"Expires": [
"-1"
@@ -1057,13 +1057,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5841?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTg0MT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17ac2963-a18c-4187-ad82-74a1186d3fc2"
+ "e9250572-c703-4178-9549-484cd3e12eb4"
],
"If-Match": [
"*"
@@ -1072,10 +1072,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1092,7 +1092,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a67c2db0-64f9-474c-bcb6-b42434c24c27"
+ "afab64db-ea83-4570-81b4-66b784a3c1e4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1101,13 +1101,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "50ce9d18-0a82-4ad2-9a96-c72ec23621d4"
+ "afab64db-ea83-4570-81b4-66b784a3c1e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001748Z:50ce9d18-0a82-4ad2-9a96-c72ec23621d4"
+ "WESTCENTRALUS:20220401T190411Z:afab64db-ea83-4570-81b4-66b784a3c1e4"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:48 GMT"
+ "Fri, 01 Apr 2022 19:04:11 GMT"
],
"Expires": [
"-1"
@@ -1120,13 +1120,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjY3Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps9813?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczk4MTM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1dfab2af-fba0-40db-9a2b-4a4fc920f70f"
+ "0370fc61-6ec7-4ac6-b332-235aca94954d"
],
"If-Match": [
"*"
@@ -1135,10 +1135,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1155,7 +1155,7 @@
"nosniff"
],
"x-ms-request-id": [
- "62dd9f27-5838-424c-b4d2-bc1838322a05"
+ "9b99f8bd-e549-471b-99bd-f66f89ffc36b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1164,13 +1164,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "45a07cfe-b381-49a0-9325-cda91257c2d3"
+ "9b99f8bd-e549-471b-99bd-f66f89ffc36b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001748Z:45a07cfe-b381-49a0-9325-cda91257c2d3"
+ "WESTCENTRALUS:20220401T190411Z:9b99f8bd-e549-471b-99bd-f66f89ffc36b"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:48 GMT"
+ "Fri, 01 Apr 2022 19:04:11 GMT"
],
"Expires": [
"-1"
@@ -1182,21 +1182,21 @@
],
"Names": {
"": [
- "ps5809",
- "ps6672",
- "ps2333",
- "ps5592",
- "ps602",
- "ps6561",
- "ps1273",
- "ps6823",
- "ps6595",
- "ps917",
- "ps9579",
- "ps8476"
+ "ps6390",
+ "ps9813",
+ "ps5841",
+ "ps2858",
+ "ps4770",
+ "ps2642",
+ "ps1822",
+ "ps8084",
+ "ps9036",
+ "ps6463",
+ "ps1906",
+ "ps7493"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudGraphQLTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudGraphQLTest.json
new file mode 100644
index 000000000000..304455979551
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudGraphQLTest.json
@@ -0,0 +1,680 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzE0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2087\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps5337\",\r\n \"query\": \"ps6898\"\r\n },\r\n \"type\": \"GraphQL\",\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps1335\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps6157\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"displayName\": \"ps1536\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2594\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "194e483c-717a-4610-8db9-ae4f62c8f0e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "598"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAE/w=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e5c017fa-b137-4436-819d-bcd54e45225d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5c017fa-b137-4436-819d-bcd54e45225d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205404Z:e5c017fa-b137-4436-819d-bcd54e45225d"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:04 GMT"
+ ],
+ "Content-Length": [
+ "1019"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7145\",\r\n \"properties\": {\r\n \"displayName\": \"ps1536\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2087\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2594\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps5337\",\r\n \"query\": \"ps6898\"\r\n },\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps1335\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps6157\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"type\": \"graphql\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzE0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4246\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2534\",\r\n \"query\": \"ps2849\"\r\n },\r\n \"type\": \"GraphQL\",\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"termsOfServiceUrl\": \"changed.microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps4549\",\r\n \"url\": \"changed.microsoft.com\",\r\n \"email\": \"changed.contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps591\",\r\n \"url\": \"changed.microsoft.com\"\r\n },\r\n \"displayName\": \"ps6241\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps5408\",\r\n \"protocols\": [\r\n \"Https\"\r\n ]\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29222323-803a-49f7-9a55-048d51f560c4"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "736"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAFAI=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d7df1e85-5958-47a0-b38d-b7553d939877"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7df1e85-5958-47a0-b38d-b7553d939877"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205435Z:d7df1e85-5958-47a0-b38d-b7553d939877"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:35 GMT"
+ ],
+ "Content-Length": [
+ "1038"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7145\",\r\n \"properties\": {\r\n \"displayName\": \"ps6241\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4246\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps5408\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2534\",\r\n \"query\": \"ps2849\"\r\n },\r\n \"termsOfServiceUrl\": \"changed.microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps4549\",\r\n \"url\": \"changed.microsoft.com\",\r\n \"email\": \"changed.contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps591\",\r\n \"url\": \"changed.microsoft.com\"\r\n },\r\n \"type\": \"graphql\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzE0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "194e483c-717a-4610-8db9-ae4f62c8f0e0"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAE/w=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "69f098f0-8c1f-4f1e-80e7-7185a31c8801"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "69f098f0-8c1f-4f1e-80e7-7185a31c8801"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205435Z:69f098f0-8c1f-4f1e-80e7-7185a31c8801"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:34 GMT"
+ ],
+ "Content-Length": [
+ "1019"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7145\",\r\n \"properties\": {\r\n \"displayName\": \"ps1536\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2087\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2594\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps5337\",\r\n \"query\": \"ps6898\"\r\n },\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps1335\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps6157\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"type\": \"graphql\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzE0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29222323-803a-49f7-9a55-048d51f560c4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAE/w=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e9fad101-14e0-4c38-bf8a-7f1769ec7dfd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9fad101-14e0-4c38-bf8a-7f1769ec7dfd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205435Z:e9fad101-14e0-4c38-bf8a-7f1769ec7dfd"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:35 GMT"
+ ],
+ "Content-Length": [
+ "1019"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7145\",\r\n \"properties\": {\r\n \"displayName\": \"ps1536\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2087\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2594\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps5337\",\r\n \"query\": \"ps6898\"\r\n },\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps1335\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps6157\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"type\": \"graphql\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed2ff197-e6e9-4553-9947-c5f2538ce586"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "67864520-ff11-4dd7-ba48-c1ca5e864d88"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "67864520-ff11-4dd7-ba48-c1ca5e864d88"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205436Z:67864520-ff11-4dd7-ba48-c1ca5e864d88"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:35 GMT"
+ ],
+ "Content-Length": [
+ "1307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps7145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM3MTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48338125-dd44-45db-a4f0-ee776f126d9b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAFAI=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "54d0c69b-c589-49f9-b26d-159f6fe010b2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "54d0c69b-c589-49f9-b26d-159f6fe010b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205436Z:54d0c69b-c589-49f9-b26d-159f6fe010b2"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:36 GMT"
+ ],
+ "Content-Length": [
+ "663"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps7145\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7145\",\r\n \"properties\": {\r\n \"displayName\": \"ps6241\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4246\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps5408\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"type\": \"graphql\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb9a8a20-9abf-48a2-a862-ffcc84bf3c3d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e7df73a9-5abd-4085-ae57-04f74ac5b99e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7df73a9-5abd-4085-ae57-04f74ac5b99e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205436Z:e7df73a9-5abd-4085-ae57-04f74ac5b99e"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:36 GMT"
+ ],
+ "Content-Length": [
+ "1530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps7145\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7145\",\r\n \"properties\": {\r\n \"displayName\": \"ps6241\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4246\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps5408\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"type\": \"graphql\",\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "19f295e5-1220-4761-8717-74d506c62ef1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c0a72fe6-dc71-4c6d-8a02-f6ba7154b198"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0a72fe6-dc71-4c6d-8a02-f6ba7154b198"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205437Z:c0a72fe6-dc71-4c6d-8a02-f6ba7154b198"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:36 GMT"
+ ],
+ "Content-Length": [
+ "765"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps7145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM3MTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7363478-5eb5-4ea6-b31d-ea945a82a8d7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4c024bc5-7b8f-4c03-9a21-fbbee3566334"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c024bc5-7b8f-4c03-9a21-fbbee3566334"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205436Z:4c024bc5-7b8f-4c03-9a21-fbbee3566334"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps7145?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzE0NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dd1f7574-d63d-4547-9d85-48548a4140ad"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dd920f0d-3e00-4522-a259-91c92de7aa5c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd920f0d-3e00-4522-a259-91c92de7aa5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220413T205437Z:dd920f0d-3e00-4522-a259-91c92de7aa5c"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 20:54:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "": [
+ "ps7145",
+ "ps1536",
+ "ps2087",
+ "ps2594",
+ "ps5337",
+ "ps6898",
+ "ps1335",
+ "ps6157",
+ "ps6241",
+ "ps4246",
+ "ps5408",
+ "ps2534",
+ "ps2849",
+ "ps4549",
+ "ps591"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json
index b978abc07b76..7cb71056101e 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1aa2d48b-6008-449c-924c-79d2aa726563"
+ "710cded0-bfff-48e0-ba94-bae8095c1133"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9db14f6a-9682-44f2-9e99-abc15d7c5fee"
+ "368a84e5-5869-41f9-a7f7-6976e9fe2643"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "4b388755-c1d0-45f7-ad7f-758a5a7911eb"
+ "368a84e5-5869-41f9-a7f7-6976e9fe2643"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001540Z:4b388755-c1d0-45f7-ad7f-758a5a7911eb"
+ "WESTCENTRALUS:20220401T190214Z:368a84e5-5869-41f9-a7f7-6976e9fe2643"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:39 GMT"
+ "Fri, 01 Apr 2022 19:02:13 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "773061f5-1ca0-4ba2-9c38-df0506301eaf"
+ "a8dad497-abfe-4dca-ab7a-436b926c5045"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,7 +90,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/5E=\""
+ "\"AAAAAAAAC04=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -99,7 +99,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5d33c1f1-7b77-4a3f-bf47-8abd93c9d3c8"
+ "677b3193-64d4-436b-84dc-b0315290321f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,16 +108,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "79240767-105f-459c-8070-b869a284249d"
+ "677b3193-64d4-436b-84dc-b0315290321f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001540Z:79240767-105f-459c-8070-b869a284249d"
+ "WESTCENTRALUS:20220401T190215Z:677b3193-64d4-436b-84dc-b0315290321f"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:39 GMT"
+ "Fri, 01 Apr 2022 19:02:15 GMT"
],
"Content-Length": [
- "747"
+ "757"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +126,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/JGZpbHRlcj1wcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lJTIwZXElMjAnRWNobyUyMEFQSScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ0VjaG8lMjBBUEknJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd30bc70-733d-4a83-a76e-530d22f12922"
+ "07375205-c776-4537-b142-4c9692e36610"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"nosniff"
],
"x-ms-request-id": [
- "49a4b865-6f30-44ce-b6fc-e81188ad9871"
+ "3ecefc79-849d-41a5-a0e8-038b7f71246c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "b34dfde7-4d87-4e27-a7f7-edaea686c8d0"
+ "3ecefc79-849d-41a5-a0e8-038b7f71246c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001540Z:b34dfde7-4d87-4e27-a7f7-edaea686c8d0"
+ "WESTCENTRALUS:20220401T190215Z:3ecefc79-849d-41a5-a0e8-038b7f71246c"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:39 GMT"
+ "Fri, 01 Apr 2022 19:02:15 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -189,32 +189,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps73\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"displayName\": \"ps8573\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7322\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps8160\",\r\n \"query\": \"ps8637\"\r\n },\r\n \"displayName\": \"ps7197\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "177760f5-3a9b-4df6-a1b5-d3716bbb1c7e"
+ "c1f9f462-6641-424d-8add-a27f6c34a134"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "326"
+ "328"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAPI=\""
+ "\"AAAAAAAADLY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,7 +234,7 @@
"nosniff"
],
"x-ms-request-id": [
- "336a9e64-d10d-4aca-af26-c3cf0409889d"
+ "3cd95584-9f33-42f1-941a-25cab079c24b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a3e51479-e4ca-4ffc-a50e-15ad6e291b27"
+ "3cd95584-9f33-42f1-941a-25cab079c24b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001541Z:a3e51479-e4ca-4ffc-a50e-15ad6e291b27"
+ "WESTCENTRALUS:20220401T190216Z:3cd95584-9f33-42f1-941a-25cab079c24b"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:41 GMT"
+ "Fri, 01 Apr 2022 19:02:16 GMT"
],
"Content-Length": [
- "737"
+ "749"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,17 +261,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps8573\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps73\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7197\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps7322\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps8160\",\r\n \"query\": \"ps8637\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4669\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3142\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4232\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2024\",\r\n \"query\": \"ps8863\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps7859\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "16def454-d405-4877-92a9-efade78935f3"
+ "7f37e7e9-c036-4ee7-bf50-8ac10a480b8a"
],
"If-Match": [
"*"
@@ -280,16 +280,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "434"
+ "435"
]
},
"ResponseHeaders": {
@@ -300,7 +300,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAPc=\""
+ "\"AAAAAAAADLs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,7 +309,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7c0511c0-38c7-4219-b018-dfa23967999f"
+ "5778c721-b73f-4298-b2cb-885d457384a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -318,16 +318,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "7e5971ad-322c-46e6-a068-fdd51c12f88d"
+ "5778c721-b73f-4298-b2cb-885d457384a5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001618Z:7e5971ad-322c-46e6-a068-fdd51c12f88d"
+ "WESTCENTRALUS:20220401T190247Z:5778c721-b73f-4298-b2cb-885d457384a5"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:18 GMT"
+ "Fri, 01 Apr 2022 19:02:47 GMT"
],
"Content-Length": [
- "726"
+ "737"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -336,17 +336,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2024\",\r\n \"query\": \"ps8863\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4669\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3142\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4232\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2024\",\r\n \"query\": \"ps8863\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps7859\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17e112e6-f280-4f8c-b2be-23b49a314800"
+ "4fdfb6f7-1878-4e2e-8535-9a6ce6ed4827"
],
"If-Match": [
"*"
@@ -355,16 +355,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "434"
+ "435"
]
},
"ResponseHeaders": {
@@ -375,7 +375,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAP4=\""
+ "\"AAAAAAAADMA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -384,7 +384,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f7aa283a-0bd8-4a4d-bf6f-63e860178efd"
+ "64430114-030d-4df9-aef2-61838a8d5a69"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -393,16 +393,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "c4fb8177-578c-4255-9e03-2195421f79a4"
+ "64430114-030d-4df9-aef2-61838a8d5a69"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001621Z:c4fb8177-578c-4255-9e03-2195421f79a4"
+ "WESTCENTRALUS:20220401T190248Z:64430114-030d-4df9-aef2-61838a8d5a69"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:21 GMT"
+ "Fri, 01 Apr 2022 19:02:47 GMT"
],
"Content-Length": [
- "726"
+ "737"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -411,23 +411,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2024\",\r\n \"query\": \"ps8863\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "177760f5-3a9b-4df6-a1b5-d3716bbb1c7e"
+ "c1f9f462-6641-424d-8add-a27f6c34a134"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -438,7 +438,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAPI=\""
+ "\"AAAAAAAADLY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -447,25 +447,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b7ec937f-7201-44c3-8126-c15eb35926d1"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "07b8bd28-307c-4dc4-b774-9af2347da32d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "7aaecea2-08fc-4013-92d1-9ee14e89d0c4"
+ "07b8bd28-307c-4dc4-b774-9af2347da32d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001611Z:7aaecea2-08fc-4013-92d1-9ee14e89d0c4"
+ "WESTCENTRALUS:20220401T190246Z:07b8bd28-307c-4dc4-b774-9af2347da32d"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:11 GMT"
+ "Fri, 01 Apr 2022 19:02:46 GMT"
],
"Content-Length": [
- "737"
+ "749"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -474,26 +474,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps8573\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps73\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7197\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps7322\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps8160\",\r\n \"query\": \"ps8637\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "16def454-d405-4877-92a9-efade78935f3"
+ "7f37e7e9-c036-4ee7-bf50-8ac10a480b8a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -504,7 +504,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAPI=\""
+ "\"AAAAAAAADLY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -513,7 +513,7 @@
"nosniff"
],
"x-ms-request-id": [
- "937ebc21-6bb8-4fb1-bf5d-4dd19292725c"
+ "ea971f72-c107-43b5-93a0-71e408610c94"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -522,16 +522,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "6a0d5691-1102-4d90-8afb-416b3876fda7"
+ "ea971f72-c107-43b5-93a0-71e408610c94"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001611Z:6a0d5691-1102-4d90-8afb-416b3876fda7"
+ "WESTCENTRALUS:20220401T190247Z:ea971f72-c107-43b5-93a0-71e408610c94"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:11 GMT"
+ "Fri, 01 Apr 2022 19:02:46 GMT"
],
"Content-Length": [
- "737"
+ "749"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -540,26 +540,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps8573\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps73\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7658\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps1329\",\r\n \"query\": \"ps4460\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7197\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps7322\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6547\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps8160\",\r\n \"query\": \"ps8637\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17e112e6-f280-4f8c-b2be-23b49a314800"
+ "4fdfb6f7-1878-4e2e-8535-9a6ce6ed4827"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -570,7 +570,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAPc=\""
+ "\"AAAAAAAADLs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -579,7 +579,7 @@
"nosniff"
],
"x-ms-request-id": [
- "18ed7626-6fc3-4c41-a52b-196b3f6aed71"
+ "4272a8fd-4f3a-4991-8947-6487aed6a27c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -588,16 +588,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "2902f29f-166b-47f5-bd81-b7db50653f68"
+ "4272a8fd-4f3a-4991-8947-6487aed6a27c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001618Z:2902f29f-166b-47f5-bd81-b7db50653f68"
+ "WESTCENTRALUS:20220401T190247Z:4272a8fd-4f3a-4991-8947-6487aed6a27c"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:18 GMT"
+ "Fri, 01 Apr 2022 19:02:47 GMT"
],
"Content-Length": [
- "726"
+ "737"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -606,26 +606,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3527\",\r\n \"query\": \"ps699\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2024\",\r\n \"query\": \"ps8863\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07f05e34-f076-463b-b346-eaf2f5def873"
+ "5145eede-d2a4-42df-8c8d-41ab4ead194c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -642,7 +642,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7e2c3196-973d-4cb8-a969-57864b4974f2"
+ "afd4adc7-1b05-480e-b0a9-186b13dec8dd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -651,16 +651,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "f203a7d7-8739-49bb-bb00-574a4af8e482"
+ "afd4adc7-1b05-480e-b0a9-186b13dec8dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001621Z:f203a7d7-8739-49bb-bb00-574a4af8e482"
+ "WESTCENTRALUS:20220401T190248Z:afd4adc7-1b05-480e-b0a9-186b13dec8dd"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:21 GMT"
+ "Fri, 01 Apr 2022 19:02:47 GMT"
],
"Content-Length": [
- "1287"
+ "1307"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -669,26 +669,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczMzOTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4MzQ0P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3fd3f176-e21d-4208-a6bc-50513c755e88"
+ "ca399224-db15-483e-bfd2-dfcf3b7dc5bb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -699,7 +699,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAP4=\""
+ "\"AAAAAAAADMA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -708,7 +708,7 @@
"nosniff"
],
"x-ms-request-id": [
- "260838db-483d-45f0-9ae2-a37a89ce9bf1"
+ "056e23ed-0f6c-4dad-babc-382575e6691a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -717,16 +717,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "3bf17b5f-84d4-4107-9d15-4ee5992160c6"
+ "056e23ed-0f6c-4dad-babc-382575e6691a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001622Z:3bf17b5f-84d4-4107-9d15-4ee5992160c6"
+ "WESTCENTRALUS:20220401T190248Z:056e23ed-0f6c-4dad-babc-382575e6691a"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:21 GMT"
+ "Fri, 01 Apr 2022 19:02:48 GMT"
],
"Content-Length": [
- "629"
+ "639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -735,26 +735,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b28cbe45-c4f1-408c-9bd0-41b33a630bab"
+ "7881ee60-e03c-4aeb-8697-f5c57ba16c29"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -771,7 +771,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ed6e51ce-8228-41ac-a077-dc134ba41890"
+ "207b4fed-27d2-4be6-8f94-da4f4f4c1543"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -780,16 +780,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "ed412a4a-9a02-4a7b-8ffc-37f4a397e0f4"
+ "207b4fed-27d2-4be6-8f94-da4f4f4c1543"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001622Z:ed412a4a-9a02-4a7b-8ffc-37f4a397e0f4"
+ "WESTCENTRALUS:20220401T190248Z:207b4fed-27d2-4be6-8f94-da4f4f4c1543"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:22 GMT"
+ "Fri, 01 Apr 2022 19:02:48 GMT"
],
"Content-Length": [
- "1482"
+ "1502"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -798,26 +798,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3398\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3398\",\r\n \"properties\": {\r\n \"displayName\": \"ps3142\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4669\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4809\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8344\",\r\n \"properties\": {\r\n \"displayName\": \"ps7859\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4232\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps4000\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3686d036-5e7e-4fc8-bf62-3064f84d74a4"
+ "3d0bf09f-50f1-4a18-8531-c9a615b38e2d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -834,7 +834,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8df58a21-ed8d-400b-9cea-25c6fdf94d91"
+ "7a0bc691-099c-416f-affc-4075645e67bd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -843,16 +843,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "18d36016-fa06-49f8-8f5a-446917ddf13d"
+ "7a0bc691-099c-416f-affc-4075645e67bd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001623Z:18d36016-fa06-49f8-8f5a-446917ddf13d"
+ "WESTCENTRALUS:20220401T190249Z:7a0bc691-099c-416f-affc-4075645e67bd"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:22 GMT"
+ "Fri, 01 Apr 2022 19:02:48 GMT"
],
"Content-Length": [
- "755"
+ "765"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -861,26 +861,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3398?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczMzOTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8344?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4MzQ0P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad752c02-fde4-4e98-8b74-9fcb60969dd2"
+ "3be715a9-5727-433c-a37d-8b2b2b5ad8c4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -897,7 +897,7 @@
"nosniff"
],
"x-ms-request-id": [
- "316137d5-ea01-449b-9801-72bd606a6981"
+ "6f81d9ef-164d-4bb4-b972-bc07573930fb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -906,13 +906,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "81bd111a-45a8-4959-972d-9ee6baa745ff"
+ "6f81d9ef-164d-4bb4-b972-bc07573930fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001622Z:81bd111a-45a8-4959-972d-9ee6baa745ff"
+ "WESTCENTRALUS:20220401T190249Z:6f81d9ef-164d-4bb4-b972-bc07573930fb"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:22 GMT"
+ "Fri, 01 Apr 2022 19:02:48 GMT"
],
"Expires": [
"-1"
@@ -925,13 +925,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8344?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODM0ND9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1fd5525c-f204-458b-bd40-e4d29fad282c"
+ "805a647b-480c-4375-8649-a11f859aba01"
],
"If-Match": [
"*"
@@ -940,10 +940,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -960,7 +960,7 @@
"nosniff"
],
"x-ms-request-id": [
- "3ac47a7f-842b-4be4-a28a-44a7e528c1c1"
+ "bee3eefc-fb5e-4f54-8eb7-b4df9e8bfbd9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -969,13 +969,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "23a8fc5b-b080-4b88-adb9-84dc36d4d8b1"
+ "bee3eefc-fb5e-4f54-8eb7-b4df9e8bfbd9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001623Z:23a8fc5b-b080-4b88-adb9-84dc36d4d8b1"
+ "WESTCENTRALUS:20220401T190249Z:bee3eefc-fb5e-4f54-8eb7-b4df9e8bfbd9"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:22 GMT"
+ "Fri, 01 Apr 2022 19:02:49 GMT"
],
"Expires": [
"-1"
@@ -990,20 +990,20 @@
],
"Names": {
"": [
- "ps3398",
- "ps8573",
- "ps73",
- "ps7658",
- "ps1329",
- "ps4460",
- "ps3142",
- "ps4669",
- "ps4809",
- "ps3527",
- "ps699"
+ "ps8344",
+ "ps7197",
+ "ps7322",
+ "ps6547",
+ "ps8160",
+ "ps8637",
+ "ps7859",
+ "ps4232",
+ "ps4000",
+ "ps2024",
+ "ps8863"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudWebSocketTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudWebSocketTest.json
new file mode 100644
index 000000000000..948564f9a411
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudWebSocketTest.json
@@ -0,0 +1,680 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODg0Mz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8091\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps7801\",\r\n \"query\": \"ps2871\"\r\n },\r\n \"type\": \"WebSocket\",\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps239\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps7920\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"displayName\": \"ps5335\",\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6165\",\r\n \"protocols\": [\r\n \"Ws\",\r\n \"Wss\"\r\n ]\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9aed977f-146a-4eab-a3a8-5f5dee56ee7f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "593"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAFFI=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c98c34c0-1f8a-47d7-9d25-88c3e63be71b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "c98c34c0-1f8a-47d7-9d25-88c3e63be71b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224715Z:c98c34c0-1f8a-47d7-9d25-88c3e63be71b"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:14 GMT"
+ ],
+ "Content-Length": [
+ "1014"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8843\",\r\n \"properties\": {\r\n \"displayName\": \"ps5335\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8091\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6165\",\r\n \"protocols\": [\r\n \"ws\",\r\n \"wss\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps7801\",\r\n \"query\": \"ps2871\"\r\n },\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps239\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps7920\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"type\": \"websocket\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODg0Mz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9514\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2234\",\r\n \"query\": \"ps7138\"\r\n },\r\n \"type\": \"WebSocket\",\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"termsOfServiceUrl\": \"changed.microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps400\",\r\n \"url\": \"changed.microsoft.com\",\r\n \"email\": \"changed.contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps9978\",\r\n \"url\": \"changed.microsoft.com\"\r\n },\r\n \"displayName\": \"ps5044\",\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps8406\",\r\n \"protocols\": [\r\n \"Ws\"\r\n ]\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8144a082-4543-4f17-b899-380afe404aff"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "733"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAFFs=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "284856a1-3a43-460c-9f86-969bf7c87da4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "284856a1-3a43-460c-9f86-969bf7c87da4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224746Z:284856a1-3a43-460c-9f86-969bf7c87da4"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:46 GMT"
+ ],
+ "Content-Length": [
+ "1035"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8843\",\r\n \"properties\": {\r\n \"displayName\": \"ps5044\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9514\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps8406\",\r\n \"protocols\": [\r\n \"ws\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps2234\",\r\n \"query\": \"ps7138\"\r\n },\r\n \"termsOfServiceUrl\": \"changed.microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps400\",\r\n \"url\": \"changed.microsoft.com\",\r\n \"email\": \"changed.contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps9978\",\r\n \"url\": \"changed.microsoft.com\"\r\n },\r\n \"type\": \"websocket\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODg0Mz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9aed977f-146a-4eab-a3a8-5f5dee56ee7f"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAFFI=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "22c842fc-3360-4c52-89e5-d66a4fc7e560"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "22c842fc-3360-4c52-89e5-d66a4fc7e560"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224745Z:22c842fc-3360-4c52-89e5-d66a4fc7e560"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:45 GMT"
+ ],
+ "Content-Length": [
+ "1014"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8843\",\r\n \"properties\": {\r\n \"displayName\": \"ps5335\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8091\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6165\",\r\n \"protocols\": [\r\n \"ws\",\r\n \"wss\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps7801\",\r\n \"query\": \"ps2871\"\r\n },\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps239\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps7920\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"type\": \"websocket\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODg0Mz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8144a082-4543-4f17-b899-380afe404aff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAFFI=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "99097b68-815d-4c7d-aaf5-d8238c653203"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "99097b68-815d-4c7d-aaf5-d8238c653203"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224746Z:99097b68-815d-4c7d-aaf5-d8238c653203"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:45 GMT"
+ ],
+ "Content-Length": [
+ "1014"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8843\",\r\n \"properties\": {\r\n \"displayName\": \"ps5335\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8091\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps6165\",\r\n \"protocols\": [\r\n \"ws\",\r\n \"wss\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps7801\",\r\n \"query\": \"ps2871\"\r\n },\r\n \"termsOfServiceUrl\": \"microsoft.com\",\r\n \"contact\": {\r\n \"name\": \"ps239\",\r\n \"url\": \"microsoft.com\",\r\n \"email\": \"contoso@microsoft.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"ps7920\",\r\n \"url\": \"microsoft.com\"\r\n },\r\n \"type\": \"websocket\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5c4d9497-d2e4-4807-842e-a4f3a9a16eef"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "94c106c2-f016-4d2f-9218-778654d1390a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "94c106c2-f016-4d2f-9218-778654d1390a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224746Z:94c106c2-f016-4d2f-9218-778654d1390a"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:46 GMT"
+ ],
+ "Content-Length": [
+ "1307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8843?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4ODQzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f9a87b9a-fdef-47a0-bb83-f0315248fedd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAAFFs=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "77e91545-4100-4736-88bf-b704404ec8d3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "77e91545-4100-4736-88bf-b704404ec8d3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224746Z:77e91545-4100-4736-88bf-b704404ec8d3"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:46 GMT"
+ ],
+ "Content-Length": [
+ "663"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8843\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8843\",\r\n \"properties\": {\r\n \"displayName\": \"ps5044\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9514\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps8406\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"type\": \"websocket\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a5c67cb-1d70-4c63-944b-3c05c6843ff7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9674b7a8-9f4b-4518-b0bc-243f0e75ae3e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "9674b7a8-9f4b-4518-b0bc-243f0e75ae3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224747Z:9674b7a8-9f4b-4518-b0bc-243f0e75ae3e"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:46 GMT"
+ ],
+ "Content-Length": [
+ "1527"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8843\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8843\",\r\n \"properties\": {\r\n \"displayName\": \"ps5044\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9514\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"ws://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps8406\",\r\n \"protocols\": [\r\n \"ws\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"type\": \"websocket\",\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85dc1b83-1df6-41de-8d12-a6c9a7a5c71f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ebd1d152-f5c3-4130-92e7-4bb7333be5b1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebd1d152-f5c3-4130-92e7-4bb7333be5b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224747Z:ebd1d152-f5c3-4130-92e7-4bb7333be5b1"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:47 GMT"
+ ],
+ "Content-Length": [
+ "765"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8843?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4ODQzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2a2c8d4-c551-4900-bd33-fc20d8f72ffa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1c741896-21a8-4d5a-8eb0-0abc446e2424"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c741896-21a8-4d5a-8eb0-0abc446e2424"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224747Z:1c741896-21a8-4d5a-8eb0-0abc446e2424"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8843?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODg0Mz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "470bc0b0-a851-47ce-a13a-a286cddc4ab1"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e2d44ce8-46ea-4a57-85e3-3b9602b00f53"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2d44ce8-46ea-4a57-85e3-3b9602b00f53"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220413T224748Z:e2d44ce8-46ea-4a57-85e3-3b9602b00f53"
+ ],
+ "Date": [
+ "Wed, 13 Apr 2022 22:47:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "": [
+ "ps8843",
+ "ps5335",
+ "ps8091",
+ "ps6165",
+ "ps7801",
+ "ps2871",
+ "ps239",
+ "ps7920",
+ "ps5044",
+ "ps9514",
+ "ps8406",
+ "ps2234",
+ "ps7138",
+ "ps400",
+ "ps9978"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json
index 6784f4d9e5e4..1206b673c47e 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49964453-9398-4ad5-a23c-37a5bfa7d8c2"
+ "eef0116d-8d7b-40a2-b845-86e6c148ad4f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a78de975-f77c-4f10-a087-86b62f8d7828"
+ "38dfbd8d-c270-4fff-b698-1b15dc656de6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "8d428925-1132-4381-80ba-320829cff787"
+ "38dfbd8d-c270-4fff-b698-1b15dc656de6"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001359Z:8d428925-1132-4381-80ba-320829cff787"
+ "WESTUS:20220401T190049Z:38dfbd8d-c270-4fff-b698-1b15dc656de6"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:58 GMT"
+ "Fri, 01 Apr 2022 19:00:48 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a0af6b7c-71c0-424b-80dd-c2224780e63a"
+ "5226a797-a2e5-4ee2-97da-2a0818d7cd07"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"nosniff"
],
"x-ms-request-id": [
- "3b2fd595-6ab3-4950-8419-f82f4bd38598"
+ "c5dc4698-61a1-4398-a97d-17007c9f7c6f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,13 +105,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "01ced567-1de8-49ea-9a75-8a0c2666e2d3"
+ "c5dc4698-61a1-4398-a97d-17007c9f7c6f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001359Z:01ced567-1de8-49ea-9a75-8a0c2666e2d3"
+ "WESTUS:20220401T190050Z:c5dc4698-61a1-4398-a97d-17007c9f7c6f"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:58 GMT"
+ "Fri, 01 Apr 2022 19:00:49 GMT"
],
"Content-Length": [
"34"
@@ -127,22 +127,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "44574b44-80d1-4913-bdbb-1338df60efde"
+ "209ba58b-3b08-4a86-8afe-56ccc2931767"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d8f07f7a-6b98-4995-9f9e-c070a1c611a6"
+ "f25c1c18-535b-4937-b59b-a91ab093f0a3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -168,13 +168,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "57bcf71b-2396-4627-9cf2-bad161ad26ad"
+ "f25c1c18-535b-4937-b59b-a91ab093f0a3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001404Z:57bcf71b-2396-4627-9cf2-bad161ad26ad"
+ "WESTUS:20220401T190055Z:f25c1c18-535b-4937-b59b-a91ab093f0a3"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:03 GMT"
+ "Fri, 01 Apr 2022 19:00:54 GMT"
],
"Content-Length": [
"34"
@@ -190,22 +190,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMzgzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTgzOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps4934\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"6f2f4c2d-d03b-4cd1-af0c-ba13df45e04e\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7270\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"e2c9fc13-375a-4468-814d-a3acd13dfb4f\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43fac817-310e-4714-819a-c57bc0949a78"
+ "cab62c56-1783-40a2-a46c-e12639ef6d09"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -222,7 +222,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAI0=\""
+ "\"AAAAAAAADFk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5875fd68-b95d-4e00-a433-c002b48f49bb"
+ "8ff25a35-a7b6-4cd4-95c0-512797689289"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a22836e0-3bfd-4c26-8d89-15e6267e3a6b"
+ "8ff25a35-a7b6-4cd4-95c0-512797689289"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001402Z:a22836e0-3bfd-4c26-8d89-15e6267e3a6b"
+ "WESTUS:20220401T190053Z:8ff25a35-a7b6-4cd4-95c0-512797689289"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:02 GMT"
+ "Fri, 01 Apr 2022 19:00:53 GMT"
],
"Content-Length": [
- "506"
+ "516"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,26 +258,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps1383\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps4934\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--60ecdacaa2ca601290f0cb94}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5839\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps7270\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--62474be5217d200d902d7e1b}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1383\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps5839\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec4c909c-2b04-4764-87dc-923838f09dd0"
+ "271a130b-4059-4446-beb2-75be957bcf8a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,7 +294,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAJA=\""
+ "\"AAAAAAAADFw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -303,7 +303,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7ea44bae-0f9a-4b49-8d20-f7043aa8a868"
+ "025fa49a-a1f7-4112-b5c7-c9647959a616"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,16 +312,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "b3df10dd-1a6c-46c4-b256-e1bd6b79a708"
+ "025fa49a-a1f7-4112-b5c7-c9647959a616"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001403Z:b3df10dd-1a6c-46c4-b256-e1bd6b79a708"
+ "WESTUS:20220401T190054Z:025fa49a-a1f7-4112-b5c7-c9647959a616"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:02 GMT"
+ "Fri, 01 Apr 2022 19:00:53 GMT"
],
"Content-Length": [
- "1417"
+ "1437"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,17 +330,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1383\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps5839\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d04ddae9-78dd-4255-9069-2785f27fe00a"
+ "65ec8f62-58b6-42a1-8114-aadc644f0617"
],
"If-Match": [
"*"
@@ -349,10 +349,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -369,7 +369,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAJQ=\""
+ "\"AAAAAAAADGA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -378,7 +378,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6e536ca6-408b-4e57-97f8-e9946f795f76"
+ "6eef1021-6565-4473-a01b-5ca821407423"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -387,16 +387,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "a0169adf-3da3-4c46-a544-3ef8b41d0eb7"
+ "6eef1021-6565-4473-a01b-5ca821407423"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001403Z:a0169adf-3da3-4c46-a544-3ef8b41d0eb7"
+ "WESTUS:20220401T190054Z:6eef1021-6565-4473-a01b-5ca821407423"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:02 GMT"
+ "Fri, 01 Apr 2022 19:00:53 GMT"
],
"Content-Length": [
- "1076"
+ "1096"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -405,26 +405,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bee7c164-613f-44fc-846a-5821ce85519b"
+ "22a2607e-65a8-467b-b98e-e393067872ed"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,7 +435,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAJQ=\""
+ "\"AAAAAAAADGA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d63d63fd-ef0e-4e64-bd37-ce519993ddc5"
+ "f122425f-f372-45b3-b19b-36fdbf1ebc22"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -453,16 +453,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "650bc1da-78cf-40f6-acb3-62b719db7a43"
+ "f122425f-f372-45b3-b19b-36fdbf1ebc22"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001403Z:650bc1da-78cf-40f6-acb3-62b719db7a43"
+ "WESTUS:20220401T190054Z:f122425f-f372-45b3-b19b-36fdbf1ebc22"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:02 GMT"
+ "Fri, 01 Apr 2022 19:00:53 GMT"
],
"Content-Length": [
- "1076"
+ "1096"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,26 +471,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59347589-43b2-4cfd-9abb-4120f134ed4f"
+ "e9c1def1-5b95-476f-b171-b94a4303f6e7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,7 +501,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAJQ=\""
+ "\"AAAAAAAADGA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -510,7 +510,7 @@
"nosniff"
],
"x-ms-request-id": [
- "67770aa8-3277-44c3-96bc-e15e217c7ffc"
+ "3cefedc8-30c4-4fbe-9ad3-998e3201008d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -519,16 +519,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "082d32d3-ed29-4ee4-b146-593c75536437"
+ "3cefedc8-30c4-4fbe-9ad3-998e3201008d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001403Z:082d32d3-ed29-4ee4-b146-593c75536437"
+ "WESTUS:20220401T190054Z:3cefedc8-30c4-4fbe-9ad3-998e3201008d"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:03 GMT"
+ "Fri, 01 Apr 2022 19:00:53 GMT"
],
"Content-Length": [
- "1076"
+ "1096"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,17 +537,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f82cf0c-f328-4a41-9aae-580861612820"
+ "943082e1-260c-4bce-a9c0-75a2e4122b84"
],
"If-Match": [
"*"
@@ -556,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -576,7 +576,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c6be2e13-da34-43c7-9f15-a334be5f61bc"
+ "ad107a83-5247-41ff-827c-6693ce00a6a9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -585,13 +585,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "e7db7fea-a526-46f4-9af0-150c41c8ef25"
+ "ad107a83-5247-41ff-827c-6693ce00a6a9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001404Z:e7db7fea-a526-46f4-9af0-150c41c8ef25"
+ "WESTUS:20220401T190055Z:ad107a83-5247-41ff-827c-6693ce00a6a9"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:03 GMT"
+ "Fri, 01 Apr 2022 19:00:54 GMT"
],
"Expires": [
"-1"
@@ -604,13 +604,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2938de6d-8cef-43ba-a421-9af6b89603d4"
+ "7bad9f23-6897-4758-93e9-c27d2870becb"
],
"If-Match": [
"*"
@@ -619,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -639,7 +639,7 @@
"nosniff"
],
"x-ms-request-id": [
- "44d3e48e-bc82-4a6d-9f6b-c7728a309ed8"
+ "4b1d6a2b-d960-4009-9c98-00662d3cef24"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -648,13 +648,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "c9aa66ec-fb30-4bd6-8958-4542e8308775"
+ "4b1d6a2b-d960-4009-9c98-00662d3cef24"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001404Z:c9aa66ec-fb30-4bd6-8958-4542e8308775"
+ "WESTUS:20220401T190055Z:4b1d6a2b-d960-4009-9c98-00662d3cef24"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:03 GMT"
+ "Fri, 01 Apr 2022 19:00:54 GMT"
],
"Expires": [
"-1"
@@ -664,13 +664,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMzgzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5839?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTgzOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2fce1a49-1a3b-4563-8614-81d8690b2665"
+ "abde6410-26c3-4f6d-a1fb-79b9eb17512a"
],
"If-Match": [
"*"
@@ -679,10 +679,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -699,7 +699,7 @@
"nosniff"
],
"x-ms-request-id": [
- "dfff3a45-951a-460e-a4de-0ac9d8360a45"
+ "73c44386-2107-4fc6-8526-5eadda9abed4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -708,13 +708,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "b473bcdd-60f2-46b5-b2df-9709817c0970"
+ "73c44386-2107-4fc6-8526-5eadda9abed4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001404Z:b473bcdd-60f2-46b5-b2df-9709817c0970"
+ "WESTUS:20220401T190055Z:73c44386-2107-4fc6-8526-5eadda9abed4"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:03 GMT"
+ "Fri, 01 Apr 2022 19:00:55 GMT"
],
"Expires": [
"-1"
@@ -727,22 +727,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6fd82c8-ad6a-482e-a79e-194586cb6009"
+ "45a5b054-955e-40ec-91b4-a4c05ee0085c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -759,7 +759,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f942e345-0b23-4bab-8a77-a359b7cb73df"
+ "eebe5d11-f16a-4323-beb1-63597fd2d160"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -768,13 +768,13 @@
"11994"
],
"x-ms-correlation-request-id": [
- "c4f28ca0-555e-42ea-a636-78a242693d89"
+ "eebe5d11-f16a-4323-beb1-63597fd2d160"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001404Z:c4f28ca0-555e-42ea-a636-78a242693d89"
+ "WESTUS:20220401T190055Z:eebe5d11-f16a-4323-beb1-63597fd2d160"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:04 GMT"
+ "Fri, 01 Apr 2022 19:00:55 GMT"
],
"Content-Length": [
"34"
@@ -792,11 +792,11 @@
],
"Names": {
"": [
- "ps1383",
- "ps4934"
+ "ps5839",
+ "ps7270"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json
index c9364f0b8553..1a68c029ecbf 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"{\\r\\n \\\"openapi\\\": \\\"3.0.0\\\",\\r\\n \\\"servers\\\": [\\r\\n {\\r\\n \\\"url\\\": \\\"http://petstore.swagger.io/v2\\\"\\r\\n }\\r\\n ],\\r\\n \\\"info\\\": {\\r\\n \\\"description\\\": \\\":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\\\",\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore\\\",\\r\\n \\\"termsOfService\\\": \\\"http://swagger.io/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"email\\\": \\\"apiteam@swagger.io\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"Apache 2.0\\\",\\r\\n \\\"url\\\": \\\"http://www.apache.org/licenses/LICENSE-2.0.html\\\"\\r\\n }\\r\\n },\\r\\n \\\"tags\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"description\\\": \\\"Everything about your Pets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"Find out more\\\",\\r\\n \\\"url\\\": \\\"http://swagger.io\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"store\\\",\\r\\n \\\"description\\\": \\\"Access to Petstore orders\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"user\\\",\\r\\n \\\"description\\\": \\\"Operations about user\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"Find out more about our store\\\",\\r\\n \\\"url\\\": \\\"http://swagger.io\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/pet\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Add a new pet to the store\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Invalid input\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n },\\r\\n \\\"put\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Update an existing pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"updatePet\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n },\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Validation exception\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/pet/findByStatus\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Finds Pets by status\\\",\\r\\n \\\"description\\\": \\\"Multiple status values can be provided with comma separated strings\\\",\\r\\n \\\"operationId\\\": \\\"findPetsByStatus\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"status\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"Status values that need to be considered for filter\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"explode\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"available\\\",\\r\\n \\\"pending\\\",\\r\\n \\\"sold\\\"\\r\\n ],\\r\\n \\\"default\\\": \\\"available\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid status value\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"/pet/findByTags\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Finds Pets by tags\\\",\\r\\n \\\"description\\\": \\\"Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.\\\",\\r\\n \\\"operationId\\\": \\\"findPetsByTags\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"Tags to filter by\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"explode\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid tag value\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"deprecated\\\": true\\r\\n }\\r\\n },\\r\\n \\\"/pet/{petId}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Find pet by ID\\\",\\r\\n \\\"description\\\": \\\"Returns a single pet\\\",\\r\\n \\\"operationId\\\": \\\"getPetById\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to return\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"api_key\\\": []\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Updates a pet in the store with form data\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"updatePetWithForm\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet that needs to be updated\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Invalid input\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/x-www-form-urlencoded\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"name\\\": {\\r\\n \\\"description\\\": \\\"Updated name of the pet\\\",\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"description\\\": \\\"Updated status of the pet\\\",\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Deletes a pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"api_key\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"Pet id to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"/pet/{petId}/uploadImage\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"uploads an image\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"uploadFile\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to update\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/ApiResponse\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/octet-stream\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"binary\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/store/inventory\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Returns pet inventories by status\\\",\\r\\n \\\"description\\\": \\\"Returns a map of status codes to quantities\\\",\\r\\n \\\"operationId\\\": \\\"getInventory\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"additionalProperties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"api_key\\\": []\\r\\n }\\r\\n ],\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/store/order\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Place an order for a pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"placeOrder\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"order placed for purchasing the pet\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/store/order/{orderId}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Find purchase order by ID\\\",\\r\\n \\\"description\\\": \\\"For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions\\\",\\r\\n \\\"operationId\\\": \\\"getOrderById\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"orderId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet that needs to be fetched\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\",\\r\\n \\\"minimum\\\": 1,\\r\\n \\\"maximum\\\": 10\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Order not found\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Delete purchase order by ID\\\",\\r\\n \\\"description\\\": \\\"For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors\\\",\\r\\n \\\"operationId\\\": \\\"deleteOrder\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"orderId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of the order that needs to be deleted\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\",\\r\\n \\\"minimum\\\": 1\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Order not found\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/user\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Create user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"createUser\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Created user object\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/createWithArray\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"createUsersWithArrayInput\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/createWithList\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"createUsersWithListInput\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/login\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Logs user into the system\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"loginUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"The user name for login\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"password\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"The password for login in clear text\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"password\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"headers\\\": {\\r\\n \\\"X-Rate-Limit\\\": {\\r\\n \\\"description\\\": \\\"calls per hour allowed by the user\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n },\\r\\n \\\"X-Expires-After\\\": {\\r\\n \\\"description\\\": \\\"date in UTC when token expires\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date-time\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username/password supplied\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/user/logout\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Logs out current logged in user session\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"logoutUser\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/{username}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Get user by user name\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"getUserByName\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"The name that needs to be fetched. Use user1 for testing. \\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"put\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Updated user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"updateUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"name that need to be updated\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid user supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Updated user object\\\",\\r\\n \\\"required\\\": true\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Delete user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"deleteUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"The name that needs to be deleted\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"See AsyncAPI example\\\",\\r\\n \\\"url\\\": \\\"https://mermade.github.io/shins/asyncapi.html\\\"\\r\\n },\\r\\n \\\"components\\\": {\\r\\n \\\"schemas\\\": {\\r\\n \\\"Order\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"petId\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"quantity\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"shipDate\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date-time\\\"\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"description\\\": \\\"Order Status\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"placed\\\",\\r\\n \\\"approved\\\",\\r\\n \\\"delivered\\\"\\r\\n ]\\r\\n },\\r\\n \\\"complete\\\": {\\r\\n \\\"type\\\": \\\"boolean\\\",\\r\\n \\\"default\\\": false\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"Category\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Category\\\"\\r\\n }\\r\\n },\\r\\n \\\"User\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"username\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"email\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"password\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"phone\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"userStatus\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\",\\r\\n \\\"description\\\": \\\"User Status\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"User\\\"\\r\\n }\\r\\n },\\r\\n \\\"Tag\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Tag\\\"\\r\\n }\\r\\n },\\r\\n \\\"Pet\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\",\\r\\n \\\"photoUrls\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"category\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Category\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"example\\\": \\\"doggie\\\"\\r\\n },\\r\\n \\\"photoUrls\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"photoUrl\\\",\\r\\n \\\"wrapped\\\": true\\r\\n },\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"tags\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"tag\\\",\\r\\n \\\"wrapped\\\": true\\r\\n },\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Tag\\\"\\r\\n }\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"description\\\": \\\"pet status in the store\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"available\\\",\\r\\n \\\"pending\\\",\\r\\n \\\"sold\\\"\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"ApiResponse\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"type\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"requestBodies\\\": {\\r\\n \\\"Pet\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Pet object that needs to be added to the store\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"UserArray\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"List of user object\\\",\\r\\n \\\"required\\\": true\\r\\n }\\r\\n },\\r\\n \\\"securitySchemes\\\": {\\r\\n \\\"petstore_auth\\\": {\\r\\n \\\"type\\\": \\\"oauth2\\\",\\r\\n \\\"flows\\\": {\\r\\n \\\"implicit\\\": {\\r\\n \\\"authorizationUrl\\\": \\\"http://petstore.swagger.io/oauth/dialog\\\",\\r\\n \\\"scopes\\\": {\\r\\n \\\"write:pets\\\": \\\"modify pets in your account\\\",\\r\\n \\\"read:pets\\\": \\\"read your pets\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"api_key\\\": {\\r\\n \\\"type\\\": \\\"apiKey\\\",\\r\\n \\\"name\\\": \\\"api_key\\\",\\r\\n \\\"in\\\": \\\"header\\\"\\r\\n }\\r\\n },\\r\\n \\\"links\\\": {},\\r\\n \\\"callbacks\\\": {}\\r\\n },\\r\\n \\\"security\\\": []\\r\\n}\",\r\n \"format\": \"openapi\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75457790-82dd-4380-9e1b-928b3eed3b93"
+ "cbd5a650-adf0-4d85-a69d-e09a8e83605c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01&asyncId=60ecd8f0a2ca601290f0cb23&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01&asyncId=62474a74217d200d902d7da5&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9c225783-d927-4b10-9ebc-91890385c540"
+ "d634c4f1-0d0c-47e3-834a-546a6d532ad5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,13 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "9256ee8f-7abe-4bb7-99d5-0b4068e9de21"
+ "d634c4f1-0d0c-47e3-834a-546a6d532ad5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000608Z:9256ee8f-7abe-4bb7-99d5-0b4068e9de21"
+ "WESTUS:20220401T185444Z:d634c4f1-0d0c-47e3-834a-546a6d532ad5"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:08 GMT"
+ "Fri, 01 Apr 2022 18:54:43 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01&asyncId=60ecd8f0a2ca601290f0cb23&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDhmMGEyY2E2MDEyOTBmMGNiMjMmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01&asyncId=62474a74217d200d902d7da5&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhNzQyMTdkMjAwZDkwMmQ3ZGE1JmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75457790-82dd-4380-9e1b-928b3eed3b93"
+ "cbd5a650-adf0-4d85-a69d-e09a8e83605c"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/s4=\""
+ "\"AAAAAAAACn0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,7 +102,7 @@
"nosniff"
],
"x-ms-request-id": [
- "60f7a91c-6c1f-491d-b9e7-995f2b39c8f6"
+ "583897cc-1fb2-4698-b998-10aef9051222"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +111,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "b2b464af-5d92-43f3-9ddd-235e898ce281"
+ "583897cc-1fb2-4698-b998-10aef9051222"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000639Z:b2b464af-5d92-43f3-9ddd-235e898ce281"
+ "WESTUS:20220401T185514Z:583897cc-1fb2-4698-b998-10aef9051222"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:38 GMT"
+ "Fri, 01 Apr 2022 18:55:14 GMT"
],
"Content-Length": [
- "1049"
+ "1336"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7518\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3611\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\r\n \"email\": \"apiteam@swagger.io\"\r\n },\r\n \"license\": {\r\n \"name\": \"Apache 2.0\",\r\n \"url\": \"http://www.apache.org/licenses/LICENSE-2.0.html\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75457790-82dd-4380-9e1b-928b3eed3b93"
+ "cbd5a650-adf0-4d85-a69d-e09a8e83605c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/s4=\""
+ "\"AAAAAAAACn0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bddc6f44-5a1d-4219-9748-85e9cb49ca0e"
+ "a56c153a-dff9-4e19-a6e5-a862dbc8b512"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "ea673cc4-3daa-4764-83f8-bdaa8e124b27"
+ "a56c153a-dff9-4e19-a6e5-a862dbc8b512"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000639Z:ea673cc4-3daa-4764-83f8-bdaa8e124b27"
+ "WESTUS:20220401T185514Z:a56c153a-dff9-4e19-a6e5-a862dbc8b512"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:38 GMT"
+ "Fri, 01 Apr 2022 18:55:14 GMT"
],
"Content-Length": [
- "1049"
+ "1336"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7518\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3611\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\r\n \"email\": \"apiteam@swagger.io\"\r\n },\r\n \"license\": {\r\n \"name\": \"Apache 2.0\",\r\n \"url\": \"http://www.apache.org/licenses/LICENSE-2.0.html\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4cf556dd-a1a0-468e-8ef4-cfbfc5ed6483"
+ "0fd7e58f-b4c4-4365-9aca-92c7b2b22a3f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c93bc123-2f8f-4ed2-b9cc-4f79c5218a87"
+ "4ba95daa-1781-4a8a-aa49-01629e7fdb24"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "68434211-b31d-4e75-a5fa-0ac1a7ad1ee4"
+ "4ba95daa-1781-4a8a-aa49-01629e7fdb24"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000639Z:68434211-b31d-4e75-a5fa-0ac1a7ad1ee4"
+ "WESTUS:20220401T185515Z:4ba95daa-1781-4a8a-aa49-01629e7fdb24"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:39 GMT"
+ "Fri, 01 Apr 2022 18:55:15 GMT"
],
"Content-Length": [
- "10858"
+ "10877"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,17 +258,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518/schemas/60ecd8f0a2ca601290f0cb22\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"60ecd8f0a2ca601290f0cb22\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"Order\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"petId\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"quantity\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"shipDate\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\"\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"Order Status\"\r\n },\r\n \"complete\": {\r\n \"type\": \"boolean\",\r\n \"default\": false\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Category\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"User\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"type\": \"integer\",\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"ApiResponse\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\"\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"PetRequest-json\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"PetRequest-xml\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611/schemas/62474a73217d200d902d7da4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"62474a73217d200d902d7da4\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"Order\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"petId\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"quantity\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"shipDate\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\"\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"Order Status\"\r\n },\r\n \"complete\": {\r\n \"type\": \"boolean\",\r\n \"default\": false\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Category\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"User\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"type\": \"integer\",\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"ApiResponse\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"PetFindByStatusGetRequest\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"default\": \"available\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByTagsGetRequest\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Pet\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-GetRequest\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-PostRequest\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-DeleteRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-DeleteRequest-1\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"Pet-petId-UploadImagePostRequest-1\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\",\r\n \"x-apim-inline\": true\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"x-apim-inline\": true\r\n },\r\n \"StoreOrder-orderId-GetRequest\": {\r\n \"maximum\": 10.0,\r\n \"minimum\": 1.0,\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"StoreOrder-orderId-DeleteRequest\": {\r\n \"minimum\": 1.0,\r\n \"type\": \"integer\",\r\n \"format\": \"int64\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGetRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGetRequest-1\": {\r\n \"type\": \"string\",\r\n \"format\": \"password\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200X-Rate-LimitResponseHeader\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserLoginGet200X-Expires-AfterResponseHeader\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\",\r\n \"x-apim-inline\": true\r\n },\r\n \"User-username-GetRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"User-username-PutRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"User-username-DeleteRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n },\r\n \"x-apim-inline\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518%3Brev%3D1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611%3Brev%3D1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f4e11ef-c7ea-4538-bbf5-e5d3522171b4"
+ "74d2db26-24c2-4e01-b0b4-741674a56db4"
],
"If-Match": [
"*"
@@ -277,10 +277,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -297,7 +297,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/yw=\""
+ "\"AAAAAAAACto=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -306,7 +306,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f3ad1848-b723-4d8c-8971-81dbd0ef8a68"
+ "274296ab-187c-465d-ad59-b723f0b7db10"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -315,16 +315,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "e626a7af-f304-479c-b70d-800c791ce62b"
+ "274296ab-187c-465d-ad59-b723f0b7db10"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000643Z:e626a7af-f304-479c-b70d-800c791ce62b"
+ "WESTUS:20220401T185516Z:274296ab-187c-465d-ad59-b723f0b7db10"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:42 GMT"
+ "Fri, 01 Apr 2022 18:55:16 GMT"
],
"Content-Length": [
- "794"
+ "804"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,17 +333,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7518\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3611\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3611?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzYxMT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ce38418-09d8-4aea-83fe-dfdf0a89426a"
+ "c02faf42-cf40-4c1e-948f-b582458abece"
],
"If-Match": [
"*"
@@ -352,10 +352,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -372,7 +372,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bc9b2567-e82e-48ad-90e6-da1f638a4240"
+ "c941f52c-c6d6-4be2-b751-ca8d446d8c23"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -381,13 +381,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "8520da2f-bc02-414f-9b89-83a636ae1cf8"
+ "c941f52c-c6d6-4be2-b751-ca8d446d8c23"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000644Z:8520da2f-bc02-414f-9b89-83a636ae1cf8"
+ "WESTUS:20220401T185516Z:c941f52c-c6d6-4be2-b751-ca8d446d8c23"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:43 GMT"
+ "Fri, 01 Apr 2022 18:55:16 GMT"
],
"Expires": [
"-1"
@@ -402,10 +402,10 @@
],
"Names": {
"": [
- "ps7518"
+ "ps3611"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json
index 3e03b46073d2..6c6a27bfd2c6 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"openapi: 3.0.1\\r\\nservers:\\r\\n - url: 'https://developer.uspto.gov/ds-api'\\r\\ninfo:\\r\\n description: >-\\r\\n The Data Set API (DSAPI) allows the public users to discover and search\\r\\n USPTO exported data sets. This is a generic API that allows USPTO users to\\r\\n make any CSV based data files searchable through API. With the help of GET\\r\\n call, it returns the list of data fields that are searchable. With the help\\r\\n of POST call, data can be fetched based on the filters on the field names.\\r\\n Please note that POST call is used to search the actual data. The reason for\\r\\n the POST call is that it allows users to specify any complex search criteria\\r\\n without worry about the GET size limitations as well as encoding of the\\r\\n input parameters.\\r\\n version: 1.0.0\\r\\n title: USPTO Data Set API\\r\\n contact:\\r\\n name: Open Data Portal\\r\\n url: 'https://developer.uspto.gov'\\r\\n email: developer@uspto.gov\\r\\ntags:\\r\\n - name: metadata\\r\\n description: Find out about the data sets\\r\\n - name: search\\r\\n description: Search a data set\\r\\npaths:\\r\\n /:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n operationId: list-data-sets\\r\\n summary: List available data sets\\r\\n responses:\\r\\n '200':\\r\\n description: Returns a list of data sets\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: '#/components/schemas/dataSetList'\\r\\n example:\\r\\n {\\r\\n \\\"total\\\": 2,\\r\\n \\\"apis\\\": [\\r\\n {\\r\\n \\\"apiKey\\\": \\\"oa_citations\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/oa_citations/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/oa_citations.json\\\"\\r\\n },\\r\\n {\\r\\n \\\"apiKey\\\": \\\"cancer_moonshot\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/cancer_moonshot/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/cancer_moonshot.json\\\"\\r\\n }\\r\\n ]\\r\\n }\\r\\n /{dataset}/{version}/fields:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n summary: >-\\r\\n Provides the general information about the API and the list of fields\\r\\n that can be used to query the dataset.\\r\\n description: >-\\r\\n This GET API returns the list of all the searchable field names that are\\r\\n in the oa_citations. Please see the 'fields' attribute which returns an\\r\\n array of field names. Each field or a combination of fields can be\\r\\n searched using the syntax options shown below.\\r\\n operationId: list-searchable-fields\\r\\n parameters:\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset.'\\r\\n required: true\\r\\n example: \\\"oa_citations\\\"\\r\\n schema:\\r\\n type: string\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n example: \\\"v1\\\"\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: >-\\r\\n The dataset API for the given version is found and it is accessible\\r\\n to consume.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n '404':\\r\\n description: >-\\r\\n The combination of dataset name and version is not found in the\\r\\n system or it is not published yet to be consumed by public.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n /{dataset}/{version}/records:\\r\\n post:\\r\\n tags:\\r\\n - search\\r\\n summary: >-\\r\\n Provides search capability for the data set with the given search\\r\\n criteria.\\r\\n description: >-\\r\\n This API is based on Solr/Lucense Search. The data is indexed using\\r\\n SOLR. This GET API returns the list of all the searchable field names\\r\\n that are in the Solr Index. Please see the 'fields' attribute which\\r\\n returns an array of field names. Each field or a combination of fields\\r\\n can be searched using the Solr/Lucene Syntax. Please refer\\r\\n https://lucene.apache.org/core/3_6_2/queryparsersyntax.html#Overview for\\r\\n the query syntax. List of field names that are searchable can be\\r\\n determined using above GET api.\\r\\n operationId: perform-search\\r\\n parameters:\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: v1\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset. In this case, the default value is oa_citations'\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: oa_citations\\r\\n responses:\\r\\n '200':\\r\\n description: successful operation\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n additionalProperties:\\r\\n type: object\\r\\n '404':\\r\\n description: No matching record found for the given criteria.\\r\\n requestBody:\\r\\n content:\\r\\n application/x-www-form-urlencoded:\\r\\n schema:\\r\\n type: object\\r\\n properties:\\r\\n criteria:\\r\\n description: >-\\r\\n Uses Lucene Query Syntax in the format of\\r\\n propertyName:value, propertyName:[num1 TO num2] and date\\r\\n range format: propertyName:[yyyyMMdd TO yyyyMMdd]. In the\\r\\n response please see the 'docs' element which has the list of\\r\\n record objects. Each record structure would consist of all\\r\\n the fields and their corresponding values.\\r\\n type: string\\r\\n default: '*:*'\\r\\n start:\\r\\n description: Starting record number. Default value is 0.\\r\\n type: integer\\r\\n default: 0\\r\\n rows:\\r\\n description: >-\\r\\n Specify number of rows to be returned. If you run the search\\r\\n with default values, in the response you will see 'numFound'\\r\\n attribute which will tell the number of records available in\\r\\n the dataset.\\r\\n type: integer\\r\\n default: 100\\r\\n required:\\r\\n - criteria\\r\\ncomponents:\\r\\n schemas:\\r\\n dataSetList:\\r\\n type: object\\r\\n properties:\\r\\n total:\\r\\n type: integer\\r\\n apis:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n properties:\\r\\n apiKey:\\r\\n type: string\\r\\n description: To be used as a dataset parameter value\\r\\n apiVersionNumber:\\r\\n type: string\\r\\n description: To be used as a version parameter value\\r\\n apiUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: \\\"The URL describing the dataset's fields\\\"\\r\\n apiDocumentationUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: A URL to the API console for each API\",\r\n \"format\": \"openapi\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "438a71dc-970c-4f8e-9647-0bfe39da2a63"
+ "c1bd5339-38d5-4e5a-a3b5-d20d82f26d89"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01&asyncId=60ecda10a2ca601290f0cb53&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01&asyncId=62474b27217d200d902d7dd5&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "53d28471-bd28-4b1a-9c35-839f94f20e55"
+ "fad5155f-9ae7-441c-bfc4-204ab0d47f8c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,13 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e5564cb1-be33-4e28-81d5-438c57c7db4e"
+ "fad5155f-9ae7-441c-bfc4-204ab0d47f8c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001056Z:e5564cb1-be33-4e28-81d5-438c57c7db4e"
+ "WESTCENTRALUS:20220401T185743Z:fad5155f-9ae7-441c-bfc4-204ab0d47f8c"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:56 GMT"
+ "Fri, 01 Apr 2022 18:57:43 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01&asyncId=60ecda10a2ca601290f0cb53&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGExMGEyY2E2MDEyOTBmMGNiNTMmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01&asyncId=62474b27217d200d902d7dd5&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDEmYXN5bmNJZD02MjQ3NGIyNzIxN2QyMDBkOTAyZDdkZDUmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "438a71dc-970c-4f8e-9647-0bfe39da2a63"
+ "c1bd5339-38d5-4e5a-a3b5-d20d82f26d89"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/54=\""
+ "\"AAAAAAAAC1s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,7 +102,7 @@
"nosniff"
],
"x-ms-request-id": [
- "39f74bb9-8a10-4c19-8d9a-e6f737ae1e14"
+ "2298634a-ba51-44e8-b3fd-5b4935a9c1ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +111,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "446a7ab0-ca4b-41c4-8bf8-5b52e6ebf5c4"
+ "2298634a-ba51-44e8-b3fd-5b4935a9c1ee"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001126Z:446a7ab0-ca4b-41c4-8bf8-5b52e6ebf5c4"
+ "WESTCENTRALUS:20220401T185813Z:2298634a-ba51-44e8-b3fd-5b4935a9c1ee"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:25 GMT"
+ "Fri, 01 Apr 2022 18:58:13 GMT"
],
"Content-Length": [
- "1381"
+ "1534"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8084\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps120\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "438a71dc-970c-4f8e-9647-0bfe39da2a63"
+ "c1bd5339-38d5-4e5a-a3b5-d20d82f26d89"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/54=\""
+ "\"AAAAAAAAC1s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "74c290b3-3b26-4096-8a24-f2106bcd8e01"
+ "826f759d-ac2a-4aea-9892-3042303b86d1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "8e31a1d1-4386-4dde-8c82-7e3d8fafaf6a"
+ "826f759d-ac2a-4aea-9892-3042303b86d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001126Z:8e31a1d1-4386-4dde-8c82-7e3d8fafaf6a"
+ "WESTCENTRALUS:20220401T185813Z:826f759d-ac2a-4aea-9892-3042303b86d1"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:26 GMT"
+ "Fri, 01 Apr 2022 18:58:13 GMT"
],
"Content-Length": [
- "1381"
+ "1534"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8084\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps120\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromUrl\",\r\n \"value\": \"https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml\",\r\n \"format\": \"openapi-link\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc954ea8-a052-4b2b-a846-3854fd317bb7"
+ "456a31bb-e4ac-4e4d-92f8-7fbc7c089a09"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +231,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01&asyncId=60ecda2ea2ca601290f0cb58&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01&asyncId=62474b46217d200d902d7dda&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -240,7 +240,7 @@
"nosniff"
],
"x-ms-request-id": [
- "857f82ad-8d81-474c-8677-3f535a08673d"
+ "d19dbcaa-49f0-4d42-8fdc-be8622d876e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -249,13 +249,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "8c7c950f-9ee5-427a-8ab6-93ad2c57e22f"
+ "d19dbcaa-49f0-4d42-8fdc-be8622d876e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001127Z:8c7c950f-9ee5-427a-8ab6-93ad2c57e22f"
+ "WESTCENTRALUS:20220401T185814Z:d19dbcaa-49f0-4d42-8fdc-be8622d876e7"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:26 GMT"
+ "Fri, 01 Apr 2022 18:58:13 GMT"
],
"Expires": [
"-1"
@@ -268,19 +268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01&asyncId=60ecda2ea2ca601290f0cb58&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGEyZWEyY2E2MDEyOTBmMGNiNTgmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01&asyncId=62474b46217d200d902d7dda&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRiNDYyMTdkMjAwZDkwMmQ3ZGRhJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc954ea8-a052-4b2b-a846-3854fd317bb7"
+ "456a31bb-e4ac-4e4d-92f8-7fbc7c089a09"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,7 +291,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/7U=\""
+ "\"AAAAAAAAC3Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -300,7 +300,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9dec35b2-1dce-4894-8187-6d0ba8a41b6c"
+ "723ad577-0ab2-496f-80ea-0961c32f2ce6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "6d894b01-4d9d-441a-aed4-9c561b0adcaa"
+ "723ad577-0ab2-496f-80ea-0961c32f2ce6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001157Z:6d894b01-4d9d-441a-aed4-9c561b0adcaa"
+ "WESTCENTRALUS:20220401T185844Z:723ad577-0ab2-496f-80ea-0961c32f2ce6"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:56 GMT"
+ "Fri, 01 Apr 2022 18:58:43 GMT"
],
"Content-Length": [
- "759"
+ "836"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2363\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4545\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": null\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc954ea8-a052-4b2b-a846-3854fd317bb7"
+ "456a31bb-e4ac-4e4d-92f8-7fbc7c089a09"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/7U=\""
+ "\"AAAAAAAAC3Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "af14eb9a-5c04-47dd-9845-565c3c1c4acd"
+ "a6e5a520-9b15-4386-8d9a-5cc3a2d9a3d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "8d2d62a3-544c-49fa-a720-b44208ef089a"
+ "a6e5a520-9b15-4386-8d9a-5cc3a2d9a3d5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001157Z:8d2d62a3-544c-49fa-a720-b44208ef089a"
+ "WESTCENTRALUS:20220401T185844Z:a6e5a520-9b15-4386-8d9a-5cc3a2d9a3d5"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:56 GMT"
+ "Fri, 01 Apr 2022 18:58:43 GMT"
],
"Content-Length": [
- "759"
+ "836"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2363\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4545\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": null\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd5ed6f9-8e3e-4c00-bf83-356dd166737f"
+ "d2a6c13e-6a99-4877-a6ae-427067daacd6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -429,7 +429,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5e48c50e-e797-45d6-a0ce-741bb13cd7f2"
+ "eb90cadd-cce8-4b40-b9e2-94a95258a627"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,16 +438,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "25ca8fc4-eeeb-450c-87e3-275476898847"
+ "eb90cadd-cce8-4b40-b9e2-94a95258a627"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001157Z:25ca8fc4-eeeb-450c-87e3-275476898847"
+ "WESTCENTRALUS:20220401T185844Z:eb90cadd-cce8-4b40-b9e2-94a95258a627"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:56 GMT"
+ "Fri, 01 Apr 2022 18:58:43 GMT"
],
"Content-Length": [
- "2509"
+ "3304"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -456,17 +456,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084/schemas/60ecda10a2ca601290f0cb52\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"60ecda10a2ca601290f0cb52\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"dataSetList\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"total\": {\r\n \"type\": \"integer\"\r\n },\r\n \"apis\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"apiKey\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a dataset parameter value\"\r\n },\r\n \"apiVersionNumber\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a version parameter value\"\r\n },\r\n \"apiUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"The URL describing the dataset's fields\",\r\n \"format\": \"uriref\"\r\n },\r\n \"apiDocumentationUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"A URL to the API console for each API\",\r\n \"format\": \"uriref\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"dataset-version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"dataset-version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"dataset-version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120/schemas/62474b27217d200d902d7dd4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"62474b27217d200d902d7dd4\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"dataSetList\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"total\": {\r\n \"type\": \"integer\"\r\n },\r\n \"apis\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"apiKey\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a dataset parameter value\"\r\n },\r\n \"apiVersionNumber\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a version parameter value\"\r\n },\r\n \"apiUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"The URL describing the dataset's fields\",\r\n \"format\": \"uriref\"\r\n },\r\n \"apiDocumentationUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"A URL to the API console for each API\",\r\n \"format\": \"uriref\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"dataset-version-FieldsGetRequest\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-FieldsGetRequest-1\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-RecordsPostRequest\": {\r\n \"type\": \"string\",\r\n \"default\": \"v1\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-RecordsPostRequest-1\": {\r\n \"type\": \"string\",\r\n \"default\": \"oa_citations\",\r\n \"x-apim-inline\": true\r\n },\r\n \"dataset-version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n },\r\n \"x-apim-inline\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363%3Brev%3D1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545%3Brev%3D1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec5fc610-7b8d-4035-8bf0-b4c5b3afcdd4"
+ "25fbf368-dd18-49eb-acd0-2463bb9c6c40"
],
"If-Match": [
"*"
@@ -475,10 +475,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -495,7 +495,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/8o=\""
+ "\"AAAAAAAAC4s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -504,7 +504,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e74fcebc-4da5-4432-9dee-77928b30d877"
+ "221fd764-a6cf-4dd2-b27f-64901396ba69"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -513,16 +513,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "4138c4e9-5b79-4f8b-bac5-c0260ef7332f"
+ "221fd764-a6cf-4dd2-b27f-64901396ba69"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001158Z:4138c4e9-5b79-4f8b-bac5-c0260ef7332f"
+ "WESTCENTRALUS:20220401T185845Z:221fd764-a6cf-4dd2-b27f-64901396ba69"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:57 GMT"
+ "Fri, 01 Apr 2022 18:58:44 GMT"
],
"Content-Length": [
- "793"
+ "803"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -531,17 +531,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2363\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4545\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps120?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTIwP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f99a0bc4-edf3-4cf0-99b9-230d2422684a"
+ "1a741053-9050-4743-8784-df2e70ce3f67"
],
"If-Match": [
"*"
@@ -550,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -570,7 +570,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0c1ace76-001d-4b42-b209-bcf99354b491"
+ "1068d688-fa44-4aaf-a2eb-8f90864deba4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,13 +579,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "b2bd4445-64e2-4c73-a828-b8f5d483f5a9"
+ "1068d688-fa44-4aaf-a2eb-8f90864deba4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001158Z:b2bd4445-64e2-4c73-a828-b8f5d483f5a9"
+ "WESTCENTRALUS:20220401T185845Z:1068d688-fa44-4aaf-a2eb-8f90864deba4"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:57 GMT"
+ "Fri, 01 Apr 2022 18:58:44 GMT"
],
"Expires": [
"-1"
@@ -598,13 +598,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4545?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDU0NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b4994302-251d-4d45-b90c-980ea1e85f50"
+ "446d827f-5ff3-4af7-a2fd-6cf64e60cb0c"
],
"If-Match": [
"*"
@@ -613,10 +613,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -633,7 +633,7 @@
"nosniff"
],
"x-ms-request-id": [
- "57e850b2-babe-40d2-bf60-231f96116325"
+ "5bf025aa-3f96-45ca-8a49-5adb149c7741"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -642,13 +642,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "cd520883-0cd9-4893-a994-4c7a4ccc57e7"
+ "5bf025aa-3f96-45ca-8a49-5adb149c7741"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001158Z:cd520883-0cd9-4893-a994-4c7a4ccc57e7"
+ "WESTCENTRALUS:20220401T185845Z:5bf025aa-3f96-45ca-8a49-5adb149c7741"
],
"Date": [
- "Tue, 13 Jul 2021 00:11:57 GMT"
+ "Fri, 01 Apr 2022 18:58:44 GMT"
],
"Expires": [
"-1"
@@ -663,11 +663,11 @@
],
"Names": {
"": [
- "ps8084",
- "ps2363"
+ "ps120",
+ "ps4545"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json
index 2ef6acea5586..3e3ef229ff22 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc76e4b2-57f8-48a6-9129-9a06ea668920"
+ "682d763f-3098-40e1-9be4-3865db03bd38"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01&asyncId=60f5ce2fa2ca600208eaaf66&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01&asyncId=624749d4217d200d902d7d8d&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "154f0d18-67d0-4c40-af85-66f593a6b54a"
+ "f3b8d163-f4c9-43a1-ac09-6d07d8575988"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,13 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "3d2966bd-ac4e-4384-8673-ced253e2613b"
+ "f3b8d163-f4c9-43a1-ac09-6d07d8575988"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191039Z:3d2966bd-ac4e-4384-8673-ced253e2613b"
+ "WESTCENTRALUS:20220401T185206Z:f3b8d163-f4c9-43a1-ac09-6d07d8575988"
],
"Date": [
- "Mon, 19 Jul 2021 19:10:38 GMT"
+ "Fri, 01 Apr 2022 18:52:06 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01&asyncId=60f5ce2fa2ca600208eaaf66&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMSZhc3luY0lkPTYwZjVjZTJmYTJjYTYwMDIwOGVhYWY2NiZhc3luY0NvZGU9MjAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01&asyncId=624749d4217d200d902d7d8d&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzQ5ZDQyMTdkMjAwZDkwMmQ3ZDhkJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc76e4b2-57f8-48a6-9129-9a06ea668920"
+ "682d763f-3098-40e1-9be4-3865db03bd38"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABBBE=\""
+ "\"AAAAAAAACXM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,7 +102,7 @@
"nosniff"
],
"x-ms-request-id": [
- "85de798a-45ef-416c-b7ed-f785be713448"
+ "0e76db0e-8b6e-4c17-92b2-f61c10942231"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +111,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "698af5c3-d95a-4a12-b6e4-b907138318cd"
+ "0e76db0e-8b6e-4c17-92b2-f61c10942231"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191109Z:698af5c3-d95a-4a12-b6e4-b907138318cd"
+ "WESTCENTRALUS:20220401T185236Z:0e76db0e-8b6e-4c17-92b2-f61c10942231"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:09 GMT"
+ "Fri, 01 Apr 2022 18:52:36 GMT"
],
"Content-Length": [
- "882"
+ "1211"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps373\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1938\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc76e4b2-57f8-48a6-9129-9a06ea668920"
+ "682d763f-3098-40e1-9be4-3865db03bd38"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABBBE=\""
+ "\"AAAAAAAACXM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "73913596-489b-40cf-8256-623685bd768e"
+ "9d799d30-01f4-42d6-a998-8c8a50cf19be"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "6610ae6e-8340-46b7-a817-a026c01c04c6"
+ "9d799d30-01f4-42d6-a998-8c8a50cf19be"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191110Z:6610ae6e-8340-46b7-a817-a026c01c04c6"
+ "WESTCENTRALUS:20220401T185237Z:9d799d30-01f4-42d6-a998-8c8a50cf19be"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:09 GMT"
+ "Fri, 01 Apr 2022 18:52:36 GMT"
],
"Content-Length": [
- "882"
+ "1211"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps373\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1938\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromUrl\",\r\n \"value\": \"http://petstore.swagger.io/v2/swagger.json\",\r\n \"format\": \"swagger-link-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "171f2573-d818-4cbc-9008-9ae33aadaf81"
+ "7fda8631-3d50-46a7-b8d8-e940d2d4b6ea"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +231,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01&asyncId=60f5ce4ea2ca600208eaaf6b&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01&asyncId=624749f6217d200d902d7d92&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -240,7 +240,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9a00f57b-98b1-496d-85e0-2fcec367af2a"
+ "e3b92bf8-6183-4a0e-a4fd-b861cbdf7ddd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -249,13 +249,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "e4b208b1-24e3-4b2e-8e6c-323d981b93c9"
+ "e3b92bf8-6183-4a0e-a4fd-b861cbdf7ddd"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191110Z:e4b208b1-24e3-4b2e-8e6c-323d981b93c9"
+ "WESTCENTRALUS:20220401T185238Z:e3b92bf8-6183-4a0e-a4fd-b861cbdf7ddd"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:10 GMT"
+ "Fri, 01 Apr 2022 18:52:37 GMT"
],
"Expires": [
"-1"
@@ -268,19 +268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01&asyncId=60f5ce4ea2ca600208eaaf6b&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGY1Y2U0ZWEyY2E2MDAyMDhlYWFmNmImYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01&asyncId=624749f6217d200d902d7d92&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzQ5ZjYyMTdkMjAwZDkwMmQ3ZDkyJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "171f2573-d818-4cbc-9008-9ae33aadaf81"
+ "7fda8631-3d50-46a7-b8d8-e940d2d4b6ea"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,7 +291,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABBDo=\""
+ "\"AAAAAAAACZw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -300,7 +300,7 @@
"nosniff"
],
"x-ms-request-id": [
- "33df7470-c085-4498-9eb2-869f38a873b4"
+ "48cd4db4-b3c4-459b-817c-ec3ac269de3f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "2f408805-4def-4aa9-ac70-20018bf5581e"
+ "48cd4db4-b3c4-459b-817c-ec3ac269de3f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191141Z:2f408805-4def-4aa9-ac70-20018bf5581e"
+ "WESTCENTRALUS:20220401T185308Z:48cd4db4-b3c4-459b-817c-ec3ac269de3f"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:40 GMT"
+ "Fri, 01 Apr 2022 18:53:07 GMT"
],
"Content-Length": [
- "1046"
+ "1333"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1013\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5277\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\r\n \"email\": \"apiteam@swagger.io\"\r\n },\r\n \"license\": {\r\n \"name\": \"Apache 2.0\",\r\n \"url\": \"http://www.apache.org/licenses/LICENSE-2.0.html\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "171f2573-d818-4cbc-9008-9ae33aadaf81"
+ "7fda8631-3d50-46a7-b8d8-e940d2d4b6ea"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABBDo=\""
+ "\"AAAAAAAACZw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "05968171-27fe-442e-9fba-5357cd0967e1"
+ "72d5ead6-870c-44c1-8c6f-424e04fcb603"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "e7f3ac26-9163-4a5e-ba67-6e18052fb945"
+ "72d5ead6-870c-44c1-8c6f-424e04fcb603"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191141Z:e7f3ac26-9163-4a5e-ba67-6e18052fb945"
+ "WESTCENTRALUS:20220401T185308Z:72d5ead6-870c-44c1-8c6f-424e04fcb603"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:40 GMT"
+ "Fri, 01 Apr 2022 18:53:07 GMT"
],
"Content-Length": [
- "1046"
+ "1333"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,17 +393,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1013\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5277\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://swagger.io/terms/\",\r\n \"contact\": {\r\n \"name\": null,\r\n \"url\": null,\r\n \"email\": \"apiteam@swagger.io\"\r\n },\r\n \"license\": {\r\n \"name\": \"Apache 2.0\",\r\n \"url\": \"http://www.apache.org/licenses/LICENSE-2.0.html\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013%3Brev%3D1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277%3Brev%3D1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3NyUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3cb27dd1-1af0-471b-bb82-542d97ec15d6"
+ "539637c0-228c-4b7c-9bde-dc45889aa8f8"
],
"If-Match": [
"*"
@@ -412,10 +412,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -432,7 +432,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABBJY=\""
+ "\"AAAAAAAACf4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -441,7 +441,7 @@
"nosniff"
],
"x-ms-request-id": [
- "00cdde49-696b-4680-a5ca-b97d1d4ef248"
+ "988232e4-3c41-47df-bf4c-b94007496919"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -450,16 +450,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "1aa0f2b8-b944-49de-88e6-0e89bba3027d"
+ "988232e4-3c41-47df-bf4c-b94007496919"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191147Z:1aa0f2b8-b944-49de-88e6-0e89bba3027d"
+ "WESTCENTRALUS:20220401T185310Z:988232e4-3c41-47df-bf4c-b94007496919"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:47 GMT"
+ "Fri, 01 Apr 2022 18:53:10 GMT"
],
"Content-Length": [
- "815"
+ "825"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -468,17 +468,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1013\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5277\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1938?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTkzOD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe71b08d-ebf6-40b6-b726-fd1eef8db144"
+ "ce65c02c-fcd3-4229-8654-d55383237a91"
],
"If-Match": [
"*"
@@ -487,10 +487,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -507,7 +507,7 @@
"nosniff"
],
"x-ms-request-id": [
- "67bbd295-893e-4b7d-9a50-ae28091bdaf7"
+ "99fb862f-1b06-4989-a88a-2236aeaba3ae"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -516,13 +516,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "446601af-dc3c-42b3-bf01-00f20db3a6cc"
+ "99fb862f-1b06-4989-a88a-2236aeaba3ae"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191149Z:446601af-dc3c-42b3-bf01-00f20db3a6cc"
+ "WESTCENTRALUS:20220401T185314Z:99fb862f-1b06-4989-a88a-2236aeaba3ae"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:48 GMT"
+ "Fri, 01 Apr 2022 18:53:13 GMT"
],
"Expires": [
"-1"
@@ -535,13 +535,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps5277?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNTI3Nz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6684dff-2e5a-4cab-99e0-8355969cd915"
+ "9000c283-90fa-4589-b640-c5a5f75f0584"
],
"If-Match": [
"*"
@@ -550,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -570,7 +570,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d8960ef4-16c1-4f9a-b454-11fbb85beebb"
+ "42a0bce9-394e-4704-8581-1657502595aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,13 +579,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "51aacc57-d2d8-4366-8705-6e4ee1fb7167"
+ "42a0bce9-394e-4704-8581-1657502595aa"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210719T191149Z:51aacc57-d2d8-4366-8705-6e4ee1fb7167"
+ "WESTCENTRALUS:20220401T185314Z:42a0bce9-394e-4704-8581-1657502595aa"
],
"Date": [
- "Mon, 19 Jul 2021 19:11:49 GMT"
+ "Fri, 01 Apr 2022 18:53:14 GMT"
],
"Expires": [
"-1"
@@ -600,11 +600,11 @@
],
"Names": {
"": [
- "ps373",
- "ps1013"
+ "ps1938",
+ "ps5277"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json
index 581b9fb001b6..9502472ecf98 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"wadlapi\",\r\n \"value\": \"\\r\\n\\r\\n Yahoo News Search API\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wadl-xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78fcbff7-4e3b-469a-8e73-6399a89e0109"
+ "a2ec8f06-2072-478e-8ff5-290f7e57a8c9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01&asyncId=60ecdbd7a2ca601290f0cbce&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01&asyncId=62474cd6217d200d902d7e52&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "83588153-e97b-48a1-bff0-52f25639c766"
+ "2f2558e3-dde7-415b-8740-4bed158bf385"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,13 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "ca5dd73b-0bfb-46e4-8a12-a9e2309f262d"
+ "2f2558e3-dde7-415b-8740-4bed158bf385"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001831Z:ca5dd73b-0bfb-46e4-8a12-a9e2309f262d"
+ "WESTCENTRALUS:20220401T190454Z:2f2558e3-dde7-415b-8740-4bed158bf385"
],
"Date": [
- "Tue, 13 Jul 2021 00:18:31 GMT"
+ "Fri, 01 Apr 2022 19:04:54 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01&asyncId=60ecdbd7a2ca601290f0cbce&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGJkN2EyY2E2MDEyOTBmMGNiY2UmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01&asyncId=62474cd6217d200d902d7e52&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRjZDYyMTdkMjAwZDkwMmQ3ZTUyJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78fcbff7-4e3b-469a-8e73-6399a89e0109"
+ "a2ec8f06-2072-478e-8ff5-290f7e57a8c9"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAcA=\""
+ "\"AAAAAAAADYM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,7 +102,7 @@
"nosniff"
],
"x-ms-request-id": [
- "95c770c5-1a06-4843-b316-bbb645e54716"
+ "2639be8b-6850-4b33-bc01-01e4652fd1bd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +111,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "554acde3-6b39-4aab-b6c2-41c7b8e076ac"
+ "2639be8b-6850-4b33-bc01-01e4652fd1bd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001901Z:554acde3-6b39-4aab-b6c2-41c7b8e076ac"
+ "WESTCENTRALUS:20220401T190525Z:2639be8b-6850-4b33-bc01-01e4652fd1bd"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:01 GMT"
+ "Fri, 01 Apr 2022 19:05:25 GMT"
],
"Content-Length": [
- "792"
+ "802"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5691\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3926\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78fcbff7-4e3b-469a-8e73-6399a89e0109"
+ "a2ec8f06-2072-478e-8ff5-290f7e57a8c9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAcA=\""
+ "\"AAAAAAAADYM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "311072f3-653e-4b89-adbd-3053db14d8fe"
+ "0923a190-2f98-4c01-a002-d48b635e0e1f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "c4c76aaa-91cb-4445-aefa-c768d3f802b6"
+ "0923a190-2f98-4c01-a002-d48b635e0e1f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001901Z:c4c76aaa-91cb-4445-aefa-c768d3f802b6"
+ "WESTCENTRALUS:20220401T190525Z:0923a190-2f98-4c01-a002-d48b635e0e1f"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:01 GMT"
+ "Fri, 01 Apr 2022 19:05:25 GMT"
],
"Content-Length": [
- "792"
+ "802"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5691\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3926\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNi9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f91d8d7d-5a4e-47bc-90eb-60d4c994d107"
+ "4e2d3e65-4a02-425f-9d71-7cb5dbec7566"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "02fbe1eb-a75d-4aff-a578-13d553165306"
+ "bb720790-63f5-4d02-87dc-178eabe60c6c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "dad38283-528c-4d76-a456-36c53b3caa8d"
+ "bb720790-63f5-4d02-87dc-178eabe60c6c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001901Z:dad38283-528c-4d76-a456-36c53b3caa8d"
+ "WESTCENTRALUS:20220401T190525Z:bb720790-63f5-4d02-87dc-178eabe60c6c"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:01 GMT"
+ "Fri, 01 Apr 2022 19:05:25 GMT"
],
"Content-Length": [
- "2909"
+ "2919"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,17 +258,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691/schemas/60ecdbd7a2ca601290f0cbcd\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"60ecdbd7a2ca601290f0cbcd\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.wadl.grammars+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926/schemas/62474cd6217d200d902d7e51\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"62474cd6217d200d902d7e51\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.wadl.grammars+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps3926?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMzkyNj9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "992532ac-7bb6-438b-a33e-2a5152ae239b"
+ "bbb50889-7316-4f0a-8f54-ffccc0d768f5"
],
"If-Match": [
"*"
@@ -277,10 +277,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,7 +297,7 @@
"nosniff"
],
"x-ms-request-id": [
- "72c40530-2477-43ef-9fb8-bec0d7c0948c"
+ "c6b1e6c5-4449-4acf-9afc-83fd2da32055"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,13 +306,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "46c9b401-4433-42cc-afbd-e9d130157402"
+ "c6b1e6c5-4449-4acf-9afc-83fd2da32055"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001902Z:46c9b401-4433-42cc-afbd-e9d130157402"
+ "WESTCENTRALUS:20220401T190525Z:c6b1e6c5-4449-4acf-9afc-83fd2da32055"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:01 GMT"
+ "Fri, 01 Apr 2022 19:05:25 GMT"
],
"Expires": [
"-1"
@@ -327,10 +327,10 @@
],
"Names": {
"": [
- "ps5691"
+ "ps3926"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json
index 6fd6b9209975..11422feef834 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromFile\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e14e2ab-6898-4593-b8e7-f68d34f48545"
+ "b414c252-8d3f-4351-b1f0-f61de334ccba"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01&asyncId=60ecdae3a2ca601290f0cb9e&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01&asyncId=62474bf4217d200d902d7e22&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,22 +42,22 @@
"nosniff"
],
"x-ms-request-id": [
- "7648c62c-e0ac-4e45-a3a5-519428d1749e"
+ "f553e724-f8de-4a46-a500-e6f387c45559"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "dccf9c90-9d28-44be-8f6e-5e95e0bb4082"
+ "f553e724-f8de-4a46-a500-e6f387c45559"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001427Z:dccf9c90-9d28-44be-8f6e-5e95e0bb4082"
+ "WESTUS:20220401T190108Z:f553e724-f8de-4a46-a500-e6f387c45559"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:27 GMT"
+ "Fri, 01 Apr 2022 19:01:08 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01&asyncId=60ecdae3a2ca601290f0cb9e&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGFlM2EyY2E2MDEyOTBmMGNiOWUmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01&asyncId=62474bf4217d200d902d7e22&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRiZjQyMTdkMjAwZDkwMmQ3ZTIyJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e14e2ab-6898-4593-b8e7-f68d34f48545"
+ "b414c252-8d3f-4351-b1f0-f61de334ccba"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAKk=\""
+ "\"AAAAAAAADGs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,25 +102,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d286a1c0-87c8-46b9-b541-a5d95f2ea703"
+ "473fe51f-1cd7-4763-8c42-5264d328580a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "46ce799e-d7a7-42c6-8a3b-26924846b53b"
+ "473fe51f-1cd7-4763-8c42-5264d328580a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001457Z:46ce799e-d7a7-42c6-8a3b-26924846b53b"
+ "WESTUS:20220401T190138Z:473fe51f-1cd7-4763-8c42-5264d328580a"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:57 GMT"
+ "Fri, 01 Apr 2022 19:01:38 GMT"
],
"Content-Length": [
- "786"
+ "796"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5541\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1240\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e14e2ab-6898-4593-b8e7-f68d34f48545"
+ "b414c252-8d3f-4351-b1f0-f61de334ccba"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAKk=\""
+ "\"AAAAAAAADGs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,25 +168,25 @@
"nosniff"
],
"x-ms-request-id": [
- "c7bab1fd-ffe0-4b5e-be31-a623210eb44d"
+ "77f4c449-65a3-426b-a8a6-d87a52f44937"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "bc8294bd-869c-41c7-bb19-4e5e3db31632"
+ "77f4c449-65a3-426b-a8a6-d87a52f44937"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001457Z:bc8294bd-869c-41c7-bb19-4e5e3db31632"
+ "WESTUS:20220401T190139Z:77f4c449-65a3-426b-a8a6-d87a52f44937"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:57 GMT"
+ "Fri, 01 Apr 2022 19:01:38 GMT"
],
"Content-Length": [
- "786"
+ "796"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5541\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1240\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromUrl\",\r\n \"value\": \"http://fazioapisoap.azurewebsites.net/fazioService.svc?singleWSDL\",\r\n \"format\": \"wsdl-link\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"OrdersAPI\",\r\n \"wsdlEndpointName\": \"basic\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa78ec47-6243-4795-8601-b9bce7068337"
+ "10d2710c-e1a3-4cf0-9e7b-36a4536d63b1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +231,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01&asyncId=60ecdb01a2ca601290f0cba5&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01&asyncId=62474c13217d200d902d7e29&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -240,22 +240,22 @@
"nosniff"
],
"x-ms-request-id": [
- "9c1e92be-622b-4662-b6a2-867d06c5b22f"
+ "ecc994ae-b1d5-41c5-ab97-5eaeec4db89c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "4d4fc179-7cfd-45e2-8c2f-72c627a87c8b"
+ "ecc994ae-b1d5-41c5-ab97-5eaeec4db89c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001458Z:4d4fc179-7cfd-45e2-8c2f-72c627a87c8b"
+ "WESTUS:20220401T190139Z:ecc994ae-b1d5-41c5-ab97-5eaeec4db89c"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:57 GMT"
+ "Fri, 01 Apr 2022 19:01:39 GMT"
],
"Expires": [
"-1"
@@ -268,19 +268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01&asyncId=60ecdb01a2ca601290f0cba5&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGIwMWEyY2E2MDEyOTBmMGNiYTUmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01&asyncId=62474c13217d200d902d7e29&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRjMTMyMTdkMjAwZDkwMmQ3ZTI5JmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa78ec47-6243-4795-8601-b9bce7068337"
+ "10d2710c-e1a3-4cf0-9e7b-36a4536d63b1"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,7 +291,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAL4=\""
+ "\"AAAAAAAADIE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -300,25 +300,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d9e8f6db-1a0e-4519-88fb-8abb650f9eca"
+ "68e5f0b6-6d1b-47c2-8988-de8cd56bcfca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "512f19da-886b-464a-b8e5-079519616bb5"
+ "68e5f0b6-6d1b-47c2-8988-de8cd56bcfca"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001528Z:512f19da-886b-464a-b8e5-079519616bb5"
+ "WESTUS:20220401T190210Z:68e5f0b6-6d1b-47c2-8988-de8cd56bcfca"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:27 GMT"
+ "Fri, 01 Apr 2022 19:02:09 GMT"
],
"Content-Length": [
- "798"
+ "808"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7738\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4295\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa78ec47-6243-4795-8601-b9bce7068337"
+ "10d2710c-e1a3-4cf0-9e7b-36a4536d63b1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAL4=\""
+ "\"AAAAAAAADIE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,25 +366,25 @@
"nosniff"
],
"x-ms-request-id": [
- "7338c314-5bbd-4002-b84d-98a43f1e91d6"
+ "d66136ed-2fb5-4c21-a278-15268cc1ba2c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "901a51a4-4d0f-40ca-abb6-27b72cab8d02"
+ "d66136ed-2fb5-4c21-a278-15268cc1ba2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001528Z:901a51a4-4d0f-40ca-abb6-27b72cab8d02"
+ "WESTUS:20220401T190210Z:d66136ed-2fb5-4c21-a278-15268cc1ba2c"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:27 GMT"
+ "Fri, 01 Apr 2022 19:02:09 GMT"
],
"Content-Length": [
- "798"
+ "808"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7738\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4295\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7938c09b-aa40-43e6-b10d-5f39f1a667fc"
+ "612ee72d-0ba9-4654-b1db-d3c2003b2f49"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -429,25 +429,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b189b315-a782-49b1-b45b-d04c7b1fa291"
+ "17cb380e-f774-4a5f-9094-2ef052b323ed"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "63564bdf-55ef-4ebd-83f0-d7a1f4ac523e"
+ "17cb380e-f774-4a5f-9094-2ef052b323ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001528Z:63564bdf-55ef-4ebd-83f0-d7a1f4ac523e"
+ "WESTUS:20220401T190210Z:17cb380e-f774-4a5f-9094-2ef052b323ed"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:28 GMT"
+ "Fri, 01 Apr 2022 19:02:09 GMT"
],
"Content-Length": [
- "15328"
+ "15368"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -456,17 +456,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738/schemas/4d79da74-1713-4439-b5b6-c348fa3e15f1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"4d79da74-1713-4439-b5b6-c348fa3e15f1\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738/schemas/54ad1b1a-7333-4d71-98b3-c6c2741e4b8c\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"54ad1b1a-7333-4d71-98b3-c6c2741e4b8c\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738/schemas/b8fce5e3-9e2d-4d4b-bd6f-eea039aca39e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"b8fce5e3-9e2d-4d4b-bd6f-eea039aca39e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738/schemas/eb36d202-22ef-4321-846c-f40a2e0b1837\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"eb36d202-22ef-4321-846c-f40a2e0b1837\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/0e52fa82-26f0-4827-bf7d-e5085063b201\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"0e52fa82-26f0-4827-bf7d-e5085063b201\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/289018a0-154c-44bd-b387-34c154864ed8\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"289018a0-154c-44bd-b387-34c154864ed8\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/8a5af773-1a09-4e00-8a0c-bdc8f239836a\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"8a5af773-1a09-4e00-8a0c-bdc8f239836a\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295/schemas/de3b0663-0bc0-406d-96af-42a8a5d60b3a\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"de3b0663-0bc0-406d-96af-42a8a5d60b3a\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738%3Brev%3D1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295%3Brev%3D1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimSoap\",\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimSoap\",\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c14f18a-7a0f-441a-93cc-1e718f6c0bd6"
+ "4e27c074-ecae-4291-bd46-b27f33ac3946"
],
"If-Match": [
"*"
@@ -475,10 +475,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -495,7 +495,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAOc=\""
+ "\"AAAAAAAADKs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -504,25 +504,25 @@
"nosniff"
],
"x-ms-request-id": [
- "c5d36d09-3f36-4e83-940f-bc30092959de"
+ "6e946877-6bce-4e89-b329-24f359fe6d71"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "a2fef3c8-6cea-4f48-a37a-f671208002bf"
+ "6e946877-6bce-4e89-b329-24f359fe6d71"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001534Z:a2fef3c8-6cea-4f48-a37a-f671208002bf"
+ "WESTUS:20220401T190210Z:6e946877-6bce-4e89-b329-24f359fe6d71"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:33 GMT"
+ "Fri, 01 Apr 2022 19:02:10 GMT"
],
"Content-Length": [
- "835"
+ "845"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -531,17 +531,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7738\",\r\n \"properties\": {\r\n \"displayName\": \"apimSoap\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4295\",\r\n \"properties\": {\r\n \"displayName\": \"apimSoap\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1240?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTI0MD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c04a713f-b73b-484f-bfa2-103f60846abb"
+ "990ae12b-fae0-402c-87f2-8dcbe9d578da"
],
"If-Match": [
"*"
@@ -550,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -570,7 +570,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ba73dbdd-467c-48d8-92a7-f2a60cece9fe"
+ "a19e5392-7dc3-43d7-93a4-62e43ee85f37"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,13 +579,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "3f27c067-209f-40f2-a11b-3219ce383898"
+ "a19e5392-7dc3-43d7-93a4-62e43ee85f37"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001535Z:3f27c067-209f-40f2-a11b-3219ce383898"
+ "WESTUS:20220401T190210Z:a19e5392-7dc3-43d7-93a4-62e43ee85f37"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:35 GMT"
+ "Fri, 01 Apr 2022 19:02:10 GMT"
],
"Expires": [
"-1"
@@ -598,13 +598,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps4295?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNDI5NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ddb5d27-a9e9-4b44-9eab-78f67e7df8bd"
+ "7dd1317d-c5a2-48e7-9300-38c6778bcf97"
],
"If-Match": [
"*"
@@ -613,10 +613,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -633,7 +633,7 @@
"nosniff"
],
"x-ms-request-id": [
- "012a88d3-0899-4885-af66-24d4dc41075d"
+ "056b4e1c-2404-4326-bf0b-9e7b58dbfa12"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -642,13 +642,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "c01ba1f8-bd1b-4a00-9aab-56d5df2a4c36"
+ "056b4e1c-2404-4326-bf0b-9e7b58dbfa12"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001535Z:c01ba1f8-bd1b-4a00-9aab-56d5df2a4c36"
+ "WESTUS:20220401T190211Z:056b4e1c-2404-4326-bf0b-9e7b58dbfa12"
],
"Date": [
- "Tue, 13 Jul 2021 00:15:35 GMT"
+ "Fri, 01 Apr 2022 19:02:10 GMT"
],
"Expires": [
"-1"
@@ -663,11 +663,11 @@
],
"Names": {
"": [
- "ps5541",
- "ps7738"
+ "ps1240",
+ "ps4295"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json
index 24432048c155..556c220b838c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b104bfc-0578-481e-b17f-3385b91bb8d3"
+ "e3924d59-0c0e-4758-b21a-e090a1a7f2a9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01&asyncId=60ecd8a1a2ca601290f0cb18&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01&asyncId=62474a1e217d200d902d7d9a&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e83e57c8-5b2a-4b6a-a37c-ab881563f3be"
+ "4d5d83c3-50b4-4ae0-a6ec-9beafe6323ca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,13 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "47602173-9b65-4f2c-901b-4896d251e46f"
+ "4d5d83c3-50b4-4ae0-a6ec-9beafe6323ca"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000449Z:47602173-9b65-4f2c-901b-4896d251e46f"
+ "WESTUS:20220401T185318Z:4d5d83c3-50b4-4ae0-a6ec-9beafe6323ca"
],
"Date": [
- "Tue, 13 Jul 2021 00:04:49 GMT"
+ "Fri, 01 Apr 2022 18:53:18 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01&asyncId=60ecd8a1a2ca601290f0cb18&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDhhMWEyY2E2MDEyOTBmMGNiMTgmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01&asyncId=62474a1e217d200d902d7d9a&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhMWUyMTdkMjAwZDkwMmQ3ZDlhJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b104bfc-0578-481e-b17f-3385b91bb8d3"
+ "e3924d59-0c0e-4758-b21a-e090a1a7f2a9"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/l4=\""
+ "\"AAAAAAAACgo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,25 +102,25 @@
"nosniff"
],
"x-ms-request-id": [
- "7dc78372-d396-4ccd-a0ea-9dfd8ae93093"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "cd72f362-289e-468d-96a1-37c6a6f8d4c8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "7c91ca8f-a764-496a-bc8c-3827a775af82"
+ "cd72f362-289e-468d-96a1-37c6a6f8d4c8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000519Z:7c91ca8f-a764-496a-bc8c-3827a775af82"
+ "WESTUS:20220401T185348Z:cd72f362-289e-468d-96a1-37c6a6f8d4c8"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:19 GMT"
+ "Fri, 01 Apr 2022 18:53:48 GMT"
],
"Content-Length": [
- "884"
+ "1211"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b104bfc-0578-481e-b17f-3385b91bb8d3"
+ "e3924d59-0c0e-4758-b21a-e090a1a7f2a9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/l4=\""
+ "\"AAAAAAAACgo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "31a79328-ec19-4a93-8060-a5cec53f977b"
+ "2fc1a837-a063-4aa5-ab63-d652dc858c46"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "eef6b84e-2381-498d-9227-5b81a607c4cb"
+ "2fc1a837-a063-4aa5-ab63-d652dc858c46"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000519Z:eef6b84e-2381-498d-9227-5b81a607c4cb"
+ "WESTUS:20220401T185349Z:2fc1a837-a063-4aa5-ab63-d652dc858c46"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:19 GMT"
+ "Fri, 01 Apr 2022 18:53:49 GMT"
],
"Content-Length": [
- "884"
+ "1211"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "292d5639-e27c-409b-b7bf-d38b1ea1ed8c"
+ "31688169-d80d-43ca-a751-47208df59fe7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/l4=\""
+ "\"AAAAAAAACgo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,7 +234,7 @@
"nosniff"
],
"x-ms-request-id": [
- "32c92440-f5ff-4b6d-8fe1-a63719f192a1"
+ "a5f80047-d49c-4eef-a165-b5d9ac9e1e08"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "cfc7ed30-53ef-4dbf-9708-b6418440edda"
+ "a5f80047-d49c-4eef-a165-b5d9ac9e1e08"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000523Z:cfc7ed30-53ef-4dbf-9708-b6418440edda"
+ "WESTUS:20220401T185352Z:a5f80047-d49c-4eef-a165-b5d9ac9e1e08"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:22 GMT"
+ "Fri, 01 Apr 2022 18:53:51 GMT"
],
"Content-Length": [
- "884"
+ "1211"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b369c10-60db-4a8f-be01-92e8f0ef30e2"
+ "335ec01b-4f5c-418f-8941-ca7348b72a4e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,7 +297,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d7d3ca48-d03a-4098-bac2-fcdda24e0115"
+ "b47dfc4b-6372-44b1-ad04-65937a4a09b5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +306,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "1bf3c487-0bbf-492a-a4da-5c4f88d0d015"
+ "b47dfc4b-6372-44b1-ad04-65937a4a09b5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000519Z:1bf3c487-0bbf-492a-a4da-5c4f88d0d015"
+ "WESTUS:20220401T185349Z:b47dfc4b-6372-44b1-ad04-65937a4a09b5"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:19 GMT"
+ "Fri, 01 Apr 2022 18:53:49 GMT"
],
"Content-Length": [
- "1287"
+ "1305"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -324,26 +324,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps2216?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczIyMTY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8128?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXMvcHM4MTI4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc2e137d-bde9-4d1a-8c5b-9fde822cc781"
+ "d69b8c3d-52af-44b9-a229-29b55b70f7de"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -354,7 +354,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/l4=\""
+ "\"AAAAAAAACgo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -363,7 +363,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b953563a-e1a9-433a-97c3-d009c2889d6f"
+ "311ae7f6-f0c4-4a80-ac1b-40cdace5ff64"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "29504dcc-dfec-4fc7-a720-7533df53ed2a"
+ "311ae7f6-f0c4-4a80-ac1b-40cdace5ff64"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000520Z:29504dcc-dfec-4fc7-a720-7533df53ed2a"
+ "WESTUS:20220401T185350Z:311ae7f6-f0c4-4a80-ac1b-40cdace5ff64"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:20 GMT"
+ "Fri, 01 Apr 2022 18:53:50 GMT"
],
"Content-Length": [
- "758"
+ "768"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -390,26 +390,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps2216\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8128\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df5137f9-2760-4cd4-8c59-44fc9235a83b"
+ "ae1a066e-e7bc-4c21-87ed-f7bf59a5f5f4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5594bc6b-4fbc-4d2f-8864-bc53f15c6cdf"
+ "da9957a2-2d89-42d8-b294-f9e32e5ed1e4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,16 +435,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "9f6f4802-fcb8-4877-9486-4993dd043686"
+ "da9957a2-2d89-42d8-b294-f9e32e5ed1e4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000521Z:9f6f4802-fcb8-4877-9486-4993dd043686"
+ "WESTUS:20220401T185351Z:da9957a2-2d89-42d8-b294-f9e32e5ed1e4"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:20 GMT"
+ "Fri, 01 Apr 2022 18:53:51 GMT"
],
"Content-Length": [
- "1610"
+ "1630"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -453,26 +453,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps2216\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps2216\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/apis/ps8128\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps8128\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36e83d38-5399-4fcc-a83d-e0f01b716fcb"
+ "e221b63a-1496-402b-bcad-af4009e6689f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,7 +489,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8661a2c0-dcc2-4725-8481-2e5d11f1ba56"
+ "7744df46-2b96-4355-978a-1aa746c9eccb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -498,16 +498,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "3e82bbab-73a4-4706-b830-d8b2618d81c7"
+ "7744df46-2b96-4355-978a-1aa746c9eccb"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000523Z:3e82bbab-73a4-4706-b830-d8b2618d81c7"
+ "WESTUS:20220401T185351Z:7744df46-2b96-4355-978a-1aa746c9eccb"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:22 GMT"
+ "Fri, 01 Apr 2022 18:53:51 GMT"
],
"Content-Length": [
- "27305"
+ "28037"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -516,26 +516,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Header1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedQueryParam\"\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D2?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps9980\",\r\n \"sourceApiId\": \"/apis/ps2216;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps6264\",\r\n \"sourceApiId\": \"/apis/ps8128;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "292d5639-e27c-409b-b7bf-d38b1ea1ed8c"
+ "31688169-d80d-43ca-a751-47208df59fe7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -552,7 +552,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/os=\""
+ "\"AAAAAAAACjk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -561,7 +561,7 @@
"nosniff"
],
"x-ms-request-id": [
- "df5fcff5-a77d-47a9-b895-495da554280f"
+ "7c7140ed-35e2-42f7-8ef8-1f0d8b93333f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -570,16 +570,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "3764ec60-19f0-416e-a5dc-f891e0b4141a"
+ "7c7140ed-35e2-42f7-8ef8-1f0d8b93333f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000526Z:3764ec60-19f0-416e-a5dc-f891e0b4141a"
+ "WESTUS:20220401T185359Z:7c7140ed-35e2-42f7-8ef8-1f0d8b93333f"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:26 GMT"
+ "Fri, 01 Apr 2022 18:53:59 GMT"
],
"Content-Length": [
- "913"
+ "1240"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -588,23 +588,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps9980\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"apiRevisionDescription\": \"ps6264\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D2?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "292d5639-e27c-409b-b7bf-d38b1ea1ed8c"
+ "31688169-d80d-43ca-a751-47208df59fe7"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -615,7 +615,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/os=\""
+ "\"AAAAAAAACjk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -624,7 +624,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7e1e516c-5191-45d1-a00b-a13452fa0266"
+ "ca7d75b4-7e31-4986-a9d4-2564e069cf71"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +633,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "a80580ab-2723-4b1d-bc9c-69ed33f787a1"
+ "ca7d75b4-7e31-4986-a9d4-2564e069cf71"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000556Z:a80580ab-2723-4b1d-bc9c-69ed33f787a1"
+ "WESTUS:20220401T185430Z:ca7d75b4-7e31-4986-a9d4-2564e069cf71"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:56 GMT"
+ "Fri, 01 Apr 2022 18:54:30 GMT"
],
"Content-Length": [
- "913"
+ "1240"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -651,26 +651,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps9980\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"apiRevisionDescription\": \"ps6264\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D2?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "def37544-7b13-42ef-9381-6e31add44c72"
+ "459f15cb-6fca-49be-ae9a-ab380206c48f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -681,7 +681,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/os=\""
+ "\"AAAAAAAACjk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -690,7 +690,7 @@
"nosniff"
],
"x-ms-request-id": [
- "56b4679c-9dc1-43b6-bd64-88978d282ff6"
+ "1fa4dc5f-cd83-4009-b1d7-0d4e7df5edde"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -699,16 +699,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "60107bf7-b809-4c03-82c0-1b6bd120c444"
+ "1fa4dc5f-cd83-4009-b1d7-0d4e7df5edde"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000557Z:60107bf7-b809-4c03-82c0-1b6bd120c444"
+ "WESTUS:20220401T185430Z:1fa4dc5f-cd83-4009-b1d7-0d4e7df5edde"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:56 GMT"
+ "Fri, 01 Apr 2022 18:54:30 GMT"
],
"Content-Length": [
- "913"
+ "1240"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -717,26 +717,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2216;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps9980\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8128;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"apiRevisionDescription\": \"ps6264\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D2/operations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D2/operations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a26213d6-cfdf-4a8b-95e6-55e68b9f5a75"
+ "6f0f879f-c7c1-42a4-9ed2-7a3058e05c5a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -753,7 +753,7 @@
"nosniff"
],
"x-ms-request-id": [
- "3d4c664a-78e5-454e-96a0-3d4fa1fc0026"
+ "7d68881b-f2cb-4ec8-b069-dac13031bf73"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -762,16 +762,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "5a4b0ee3-2b83-49d0-923d-a65c8f4e3c04"
+ "7d68881b-f2cb-4ec8-b069-dac13031bf73"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000556Z:5a4b0ee3-2b83-49d0-923d-a65c8f4e3c04"
+ "WESTUS:20220401T185430Z:7d68881b-f2cb-4ec8-b069-dac13031bf73"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:56 GMT"
+ "Fri, 01 Apr 2022 18:54:30 GMT"
],
"Content-Length": [
- "27353"
+ "28085"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -780,26 +780,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"60ecd8a1a2ca601290f0cb17\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Header1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedQueryParam\"\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"62474a1e217d200d902d7d99\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/revisions?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/revisions?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZXZpc2lvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "24220d74-9e07-481a-8387-76598aec2c05"
+ "2fb283e4-e98f-4bbd-bf22-d5670382a973"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -816,7 +816,7 @@
"nosniff"
],
"x-ms-request-id": [
- "95565616-3ca9-4d2c-be02-7a33e8d241ac"
+ "78c365b6-1144-40db-94a1-ea97be027b74"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -825,16 +825,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "ae483ff7-f65d-4f41-84c8-cc7aa732850c"
+ "78c365b6-1144-40db-94a1-ea97be027b74"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000557Z:ae483ff7-f65d-4f41-84c8-cc7aa732850c"
+ "WESTUS:20220401T185431Z:78c365b6-1144-40db-94a1-ea97be027b74"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:57 GMT"
+ "Fri, 01 Apr 2022 18:54:31 GMT"
],
"Content-Length": [
- "597"
+ "595"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -843,26 +843,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps2216;rev=2/revisions/ps2216;rev=2\",\r\n \"apiId\": \"/apis/ps2216;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2021-07-13T00:05:25.21Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:26.233Z\",\r\n \"description\": \"ps9980\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps2216;rev=1/revisions/ps2216;rev=1\",\r\n \"apiId\": \"/apis/ps2216;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2021-07-13T00:04:49.367Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:04:49.397Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerapifromFile\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps8128;rev=2/revisions/ps8128;rev=2\",\r\n \"apiId\": \"/apis/ps8128;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2022-04-01T18:53:58.02Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:53:59.23Z\",\r\n \"description\": \"ps6264\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps8128;rev=1/revisions/ps8128;rev=1\",\r\n \"apiId\": \"/apis/ps8128;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2022-04-01T18:53:18.693Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:53:18.74Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerapifromFile\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps2216;rev=2\",\r\n \"notes\": \"ps1845\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps8128;rev=2\",\r\n \"notes\": \"ps3602\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8af4145-33ef-48ee-a41c-b1165ca0083c"
+ "1cdbfd7c-ec60-4015-9f23-a28c6670dccd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -879,7 +879,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/rk=\""
+ "\"AAAAAAAACmg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -888,7 +888,7 @@
"nosniff"
],
"x-ms-request-id": [
- "eafffad5-b194-4fb4-aebe-ac1c313a271b"
+ "9f22d04e-43ea-46db-9f34-5fc5b763d1ae"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -897,16 +897,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "260014d7-bd93-437a-8abf-69082011b073"
+ "9f22d04e-43ea-46db-9f34-5fc5b763d1ae"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000558Z:260014d7-bd93-437a-8abf-69082011b073"
+ "WESTUS:20220401T185432Z:9f22d04e-43ea-46db-9f34-5fc5b763d1ae"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:57 GMT"
+ "Fri, 01 Apr 2022 18:54:32 GMT"
],
"Content-Length": [
- "603"
+ "623"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -915,26 +915,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.0915272Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:58.1249239Z\",\r\n \"notes\": \"ps1845\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.8836096Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:31.9136859Z\",\r\n \"notes\": \"ps3602\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8cf4dbb-a007-48a5-bda1-c7dc188d349c"
+ "af9b0bf0-7b45-4f3d-817f-712dd68108fd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -945,7 +945,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/rk=\""
+ "\"AAAAAAAACmg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -954,7 +954,7 @@
"nosniff"
],
"x-ms-request-id": [
- "833f6e91-ca6b-4d83-a6b3-c52ff6948e14"
+ "05037e4a-4bbb-4966-a8b2-30b5f9946318"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -963,16 +963,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "183b1e18-b7b4-44ff-8bcf-0e5e1f563cc5"
+ "05037e4a-4bbb-4966-a8b2-30b5f9946318"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000558Z:183b1e18-b7b4-44ff-8bcf-0e5e1f563cc5"
+ "WESTUS:20220401T185432Z:05037e4a-4bbb-4966-a8b2-30b5f9946318"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:58 GMT"
+ "Fri, 01 Apr 2022 18:54:32 GMT"
],
"Content-Length": [
- "594"
+ "615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -981,26 +981,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:58.123Z\",\r\n \"notes\": \"ps1845\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:31.913Z\",\r\n \"notes\": \"ps3602\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8cf4dbb-a007-48a5-bda1-c7dc188d349c"
+ "af9b0bf0-7b45-4f3d-817f-712dd68108fd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1011,7 +1011,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/sA=\""
+ "\"AAAAAAAACm8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1020,7 +1020,7 @@
"nosniff"
],
"x-ms-request-id": [
- "02d6403e-cc34-47a0-b85b-47b58eba63bd"
+ "0b3c1bd4-0a40-49d4-833f-6a4aca077545"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1029,16 +1029,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "31e96383-a4a5-4aed-89c6-2650750b40e7"
+ "0b3c1bd4-0a40-49d4-833f-6a4aca077545"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000559Z:31e96383-a4a5-4aed-89c6-2650750b40e7"
+ "WESTUS:20220401T185433Z:0b3c1bd4-0a40-49d4-833f-6a4aca077545"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:58 GMT"
+ "Fri, 01 Apr 2022 18:54:33 GMT"
],
"Content-Length": [
- "594"
+ "615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1047,17 +1047,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:59.023Z\",\r\n \"notes\": \"ps7283\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:33.223Z\",\r\n \"notes\": \"ps7134\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzL3BzNjA2Nj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcy9wczI0NDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"notes\": \"ps7283\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"notes\": \"ps7134\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8cf4dbb-a007-48a5-bda1-c7dc188d349c"
+ "af9b0bf0-7b45-4f3d-817f-712dd68108fd"
],
"If-Match": [
"*"
@@ -1066,16 +1066,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "225"
+ "235"
]
},
"ResponseHeaders": {
@@ -1086,7 +1086,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/sA=\""
+ "\"AAAAAAAACm8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1095,7 +1095,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6c7e2949-de34-4f5d-9f10-6e9434a3b6ca"
+ "7b9cd7a8-104a-42b4-b857-2a94fcd703ec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1104,16 +1104,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "5b46cd85-13ed-4a45-91e5-f1405a4dc2ea"
+ "7b9cd7a8-104a-42b4-b857-2a94fcd703ec"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000559Z:5b46cd85-13ed-4a45-91e5-f1405a4dc2ea"
+ "WESTUS:20220401T185433Z:7b9cd7a8-104a-42b4-b857-2a94fcd703ec"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:58 GMT"
+ "Fri, 01 Apr 2022 18:54:33 GMT"
],
"Content-Length": [
- "598"
+ "619"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1122,26 +1122,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216\",\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:59.0219974Z\",\r\n \"notes\": \"ps7283\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128\",\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:33.2241758Z\",\r\n \"notes\": \"ps7134\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOC9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df3acd9e-3c0e-47f8-810c-fa33f6768f01"
+ "ee8ebcf4-517a-4e1e-b67d-dd25ce0d8217"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1158,7 +1158,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a2c31767-d642-459e-86e0-e5034d303a32"
+ "8d50b351-5fda-4857-b933-76fdea48c248"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1167,16 +1167,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "a7510137-c3e7-4e66-b169-24e8abf91abb"
+ "8d50b351-5fda-4857-b933-76fdea48c248"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000559Z:a7510137-c3e7-4e66-b169-24e8abf91abb"
+ "WESTUS:20220401T185434Z:8d50b351-5fda-4857-b933-76fdea48c248"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:59 GMT"
+ "Fri, 01 Apr 2022 18:54:34 GMT"
],
"Content-Length": [
- "500"
+ "511"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1185,17 +1185,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases/ps6066\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps6066\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2021-07-13T00:05:58.09Z\",\r\n \"updatedDateTime\": \"2021-07-13T00:05:59.023Z\",\r\n \"notes\": \"ps7283\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128/releases/ps2448\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps2448\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2022-04-01T18:54:31.883Z\",\r\n \"updatedDateTime\": \"2022-04-01T18:54:33.223Z\",\r\n \"notes\": \"ps7134\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216%3Brev%3D1?deleteRevisions=false&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2JTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128%3Brev%3D1?deleteRevisions=false&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOCUzQnJldiUzRDE/ZGVsZXRlUmV2aXNpb25zPWZhbHNlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01e64f25-f587-4bac-8ad2-cbb9b5fa94e8"
+ "bbd99354-42d7-428a-b0d5-56a4b8481cea"
],
"If-Match": [
"*"
@@ -1204,10 +1204,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1224,7 +1224,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ffbd75c1-dbd6-443d-861d-c8082d46412a"
+ "a9f95995-45c1-46c3-bd91-42d8d58b3fa8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1233,13 +1233,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "b2af84ca-eba4-445b-a225-2ab96993f109"
+ "a9f95995-45c1-46c3-bd91-42d8d58b3fa8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000600Z:b2af84ca-eba4-445b-a225-2ab96993f109"
+ "WESTUS:20220401T185434Z:a9f95995-45c1-46c3-bd91-42d8d58b3fa8"
],
"Date": [
- "Tue, 13 Jul 2021 00:05:59 GMT"
+ "Fri, 01 Apr 2022 18:54:34 GMT"
],
"Expires": [
"-1"
@@ -1252,13 +1252,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps8128?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzODEyOD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8574bfc3-558d-47dc-b481-aa010dda6fb6"
+ "f617dc77-b687-493e-a8de-8c025c0335e4"
],
"If-Match": [
"*"
@@ -1267,10 +1267,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1287,7 +1287,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ca8718f7-2901-471a-9e29-f82fe9bd2555"
+ "9ae3641d-42a9-4271-a512-e75c78edf1a8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1296,13 +1296,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "47181a82-6e58-4d70-94e7-2e23830897af"
+ "9ae3641d-42a9-4271-a512-e75c78edf1a8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000601Z:47181a82-6e58-4d70-94e7-2e23830897af"
+ "WESTUS:20220401T185435Z:9ae3641d-42a9-4271-a512-e75c78edf1a8"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:00 GMT"
+ "Fri, 01 Apr 2022 18:54:35 GMT"
],
"Expires": [
"-1"
@@ -1317,14 +1317,14 @@
],
"Names": {
"": [
- "ps2216",
- "ps6066",
- "ps9980",
- "ps1845",
- "ps7283"
+ "ps8128",
+ "ps2448",
+ "ps6264",
+ "ps3602",
+ "ps7134"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json
index 82dd3e67ed55..6da610026bb6 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4102\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9383\",\r\n \"query\": \"ps9012\"\r\n },\r\n \"displayName\": \"ps6703\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8180\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps5613\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9154\",\r\n \"query\": \"ps2844\"\r\n },\r\n \"displayName\": \"ps3801\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8767\",\r\n \"protocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "498cb380-2bcb-475f-90df-28d7aaf9e44f"
+ "5cb0024e-f0a2-403f-997a-f86420ebc156"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAi8=\""
+ "\"AAAAAAAADhs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "42928d2f-fe56-4d94-8c23-f8e6a9bfbd7a"
+ "054f6f34-9447-4796-b82b-f4019b88d417"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,16 +51,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "586c0c95-652f-4fe2-9410-73a562d4d300"
+ "054f6f34-9447-4796-b82b-f4019b88d417"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002334Z:586c0c95-652f-4fe2-9410-73a562d4d300"
+ "WESTUS:20220401T230820Z:054f6f34-9447-4796-b82b-f4019b88d417"
],
"Date": [
- "Tue, 13 Jul 2021 00:23:33 GMT"
+ "Fri, 01 Apr 2022 23:08:19 GMT"
],
"Content-Length": [
- "739"
+ "749"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,23 +69,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8106\",\r\n \"properties\": {\r\n \"displayName\": \"ps6703\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4102\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8180\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9383\",\r\n \"query\": \"ps9012\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1085\",\r\n \"properties\": {\r\n \"displayName\": \"ps3801\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps5613\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8767\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9154\",\r\n \"query\": \"ps2844\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "498cb380-2bcb-475f-90df-28d7aaf9e44f"
+ "5cb0024e-f0a2-403f-997a-f86420ebc156"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAi8=\""
+ "\"AAAAAAAADhs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -105,7 +105,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0fe1ed0d-df5c-44b5-807a-b6455ff4bed8"
+ "805254c0-0266-4c9b-9eeb-d33f6c141f79"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,16 +114,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "4e8738fe-ecde-4e8e-a47c-6d5f5edaf763"
+ "805254c0-0266-4c9b-9eeb-d33f6c141f79"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002404Z:4e8738fe-ecde-4e8e-a47c-6d5f5edaf763"
+ "WESTUS:20220401T230851Z:805254c0-0266-4c9b-9eeb-d33f6c141f79"
],
"Date": [
- "Tue, 13 Jul 2021 00:24:03 GMT"
+ "Fri, 01 Apr 2022 23:08:51 GMT"
],
"Content-Length": [
- "739"
+ "749"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,26 +132,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8106\",\r\n \"properties\": {\r\n \"displayName\": \"ps6703\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4102\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8180\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9383\",\r\n \"query\": \"ps9012\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1085\",\r\n \"properties\": {\r\n \"displayName\": \"ps3801\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps5613\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8767\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9154\",\r\n \"query\": \"ps2844\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00af67d8-a32e-457b-a82b-ac6e8a58b6e2"
+ "05f9623d-c921-4e25-a39b-50a1b3398510"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f0119d16-041f-416e-bf27-b7a5f611c2e1"
+ "b151a840-f9b2-4d06-ad84-4efdd218d6bb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,13 +177,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "2fd08508-b287-4193-97e4-383bc91c987a"
+ "b151a840-f9b2-4d06-ad84-4efdd218d6bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002404Z:2fd08508-b287-4193-97e4-383bc91c987a"
+ "WESTUS:20220401T230852Z:b151a840-f9b2-4d06-ad84-4efdd218d6bb"
],
"Date": [
- "Tue, 13 Jul 2021 00:24:03 GMT"
+ "Fri, 01 Apr 2022 23:08:52 GMT"
],
"Content-Length": [
"34"
@@ -199,22 +199,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f19b0f6-53ba-43ea-a459-05334bc21686"
+ "c26efa26-19a8-494a-aeb5-14ab0c87f55a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f2fa3f6f-2274-4bac-8d92-b233c6d63dae"
+ "e54853bf-d250-40d5-9724-bec8dcc6d311"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "092e2ca0-47a0-4441-823a-fd658c0282ef"
+ "e54853bf-d250-40d5-9724-bec8dcc6d311"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002435Z:092e2ca0-47a0-4441-823a-fd658c0282ef"
+ "WESTUS:20220401T230924Z:e54853bf-d250-40d5-9724-bec8dcc6d311"
],
"Date": [
- "Tue, 13 Jul 2021 00:24:34 GMT"
+ "Fri, 01 Apr 2022 23:09:24 GMT"
],
"Content-Length": [
- "2007"
+ "2015"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,26 +258,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fafc1bb-7ec5-4120-849e-73a48e7ae467"
+ "269d2971-3383-43af-8795-634c304722a1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,7 +294,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd25a2ca601290f0cc02&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247860501234e13942b0703&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -303,7 +303,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a1cab2b7-c382-468e-a5a1-6d620af81e21"
+ "25f7715a-09e1-4699-b9df-7b72f984eb32"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,13 +312,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "bdbb5f97-0465-45e9-9f75-3e874b3f80b8"
+ "25f7715a-09e1-4699-b9df-7b72f984eb32"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002405Z:bdbb5f97-0465-45e9-9f75-3e874b3f80b8"
+ "WESTUS:20220401T230853Z:25f7715a-09e1-4699-b9df-7b72f984eb32"
],
"Date": [
- "Tue, 13 Jul 2021 00:24:04 GMT"
+ "Fri, 01 Apr 2022 23:08:53 GMT"
],
"Expires": [
"-1"
@@ -331,13 +331,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cffe3b42-d8f7-4d36-bb11-2ea8b2c13cac"
+ "72936300-ec26-425d-9c26-096a98c80bd6"
],
"If-Match": [
"*"
@@ -346,10 +346,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -366,7 +366,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd43a2ca601290f0cc06&asyncCode=200"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247862401234e13942b0707&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -375,7 +375,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c22680af-732f-450a-9a78-67418caed8f0"
+ "bbadeaa1-c219-4f8d-b74f-430a7efb6717"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -384,13 +384,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "9b79c5e0-d578-4c89-89a9-1bd578ed94f4"
+ "bbadeaa1-c219-4f8d-b74f-430a7efb6717"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002435Z:9b79c5e0-d578-4c89-89a9-1bd578ed94f4"
+ "WESTUS:20220401T230924Z:bbadeaa1-c219-4f8d-b74f-430a7efb6717"
],
"Date": [
- "Tue, 13 Jul 2021 00:24:35 GMT"
+ "Fri, 01 Apr 2022 23:09:24 GMT"
],
"Expires": [
"-1"
@@ -403,19 +403,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd25a2ca601290f0cc02&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGQyNWEyY2E2MDEyOTBmMGNjMDImYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247860501234e13942b0703&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDEmYXN5bmNJZD02MjQ3ODYwNTAxMjM0ZTEzOTQyYjA3MDMmYXN5bmNDb2RlPTIwMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fafc1bb-7ec5-4120-849e-73a48e7ae467"
+ "269d2971-3383-43af-8795-634c304722a1"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAjQ=\""
+ "\"AAAAAAAADiA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -435,7 +435,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6a873175-7c12-4e10-81c3-934f55b552eb"
+ "e2255422-9049-4fd9-98ef-ce6756ffd137"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -444,16 +444,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "0063c26a-7f4b-4ed4-a641-da8418815949"
+ "e2255422-9049-4fd9-98ef-ce6756ffd137"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002435Z:0063c26a-7f4b-4ed4-a641-da8418815949"
+ "WESTUS:20220401T230923Z:e2255422-9049-4fd9-98ef-ce6756ffd137"
],
"Date": [
- "Tue, 13 Jul 2021 00:24:34 GMT"
+ "Fri, 01 Apr 2022 23:09:23 GMT"
],
"Content-Length": [
- "1699"
+ "1707"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,26 +462,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9afff42-4222-4d0f-a8c0-0e5b3a59f7c4"
+ "56001a29-6f2f-4f42-aca0-c80f97ceb591"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -492,7 +492,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAjQ=\""
+ "\"AAAAAAAADiA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -501,7 +501,7 @@
"nosniff"
],
"x-ms-request-id": [
- "fa4daf56-4d4a-4a5f-aee7-5c144429b0cd"
+ "f78acd85-b2c9-44dc-880f-eb8930becb5c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -510,16 +510,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "22805eb8-e59d-4d80-8157-a955d81ad045"
+ "f78acd85-b2c9-44dc-880f-eb8930becb5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002435Z:22805eb8-e59d-4d80-8157-a955d81ad045"
+ "WESTUS:20220401T230923Z:f78acd85-b2c9-44dc-880f-eb8930becb5c"
],
"Date": [
- "Tue, 13 Jul 2021 00:24:34 GMT"
+ "Fri, 01 Apr 2022 23:09:23 GMT"
],
"Content-Length": [
- "1699"
+ "1707"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -528,23 +528,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01&asyncId=60ecdd43a2ca601290f0cc06&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGQ0M2EyY2E2MDEyOTBmMGNjMDYmYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01&asyncId=6247862401234e13942b0707&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDEmYXN5bmNJZD02MjQ3ODYyNDAxMjM0ZTEzOTQyYjA3MDcmYXN5bmNDb2RlPTIwMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cffe3b42-d8f7-4d36-bb11-2ea8b2c13cac"
+ "72936300-ec26-425d-9c26-096a98c80bd6"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -555,7 +555,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAjg=\""
+ "\"AAAAAAAADiQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -564,25 +564,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d6e8ffca-ffde-4e4d-9f78-0918e3ed7585"
+ "ed2d37e5-192f-4a9e-bd7a-5af568af3545"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11999"
],
"x-ms-correlation-request-id": [
- "137f1844-f074-4264-8343-11288f40e806"
+ "ed2d37e5-192f-4a9e-bd7a-5af568af3545"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002506Z:137f1844-f074-4264-8343-11288f40e806"
+ "WESTUS:20220401T230957Z:ed2d37e5-192f-4a9e-bd7a-5af568af3545"
],
"Date": [
- "Tue, 13 Jul 2021 00:25:06 GMT"
+ "Fri, 01 Apr 2022 23:09:57 GMT"
],
"Content-Length": [
- "1525"
+ "1533"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -591,17 +591,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps3536\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a602e973-2809-4c87-a660-a05a177090d7"
+ "8806823e-1f2c-42c9-8b4a-9a00aa37db27"
],
"If-Match": [
"*"
@@ -610,10 +610,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -630,7 +630,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b0f39765-4df7-4f96-87fe-01b70a8efa3d"
+ "fffdc0fb-526c-4071-966a-80357839af64"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -639,13 +639,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "f763c387-9f6e-430a-9692-1bbd61ee6e51"
+ "fffdc0fb-526c-4071-966a-80357839af64"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002507Z:f763c387-9f6e-430a-9692-1bbd61ee6e51"
+ "WESTUS:20220401T231002Z:fffdc0fb-526c-4071-966a-80357839af64"
],
"Date": [
- "Tue, 13 Jul 2021 00:25:06 GMT"
+ "Fri, 01 Apr 2022 23:10:02 GMT"
],
"Expires": [
"-1"
@@ -658,13 +658,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106/schemas/ps3536?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2L3NjaGVtYXMvcHMzNTM2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085/schemas/ps438?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NS9zY2hlbWFzL3BzNDM4P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e0ffb94c-0d23-4368-a5cb-b53ffdd3968b"
+ "f559364d-14b9-4cf3-9f30-3d1cddc5372a"
],
"If-Match": [
"*"
@@ -673,10 +673,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -693,7 +693,7 @@
"nosniff"
],
"x-ms-request-id": [
- "20ec15f1-ebdd-4855-9289-531dadf7a7f6"
+ "ebf4cc0a-17be-4392-ba9b-35bf4ce4b0cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -702,13 +702,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "0f9b91ef-1951-4176-a8da-a0b87901f81c"
+ "ebf4cc0a-17be-4392-ba9b-35bf4ce4b0cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002507Z:0f9b91ef-1951-4176-a8da-a0b87901f81c"
+ "WESTUS:20220401T231002Z:ebf4cc0a-17be-4392-ba9b-35bf4ce4b0cf"
],
"Date": [
- "Tue, 13 Jul 2021 00:25:07 GMT"
+ "Fri, 01 Apr 2022 23:10:02 GMT"
],
"Expires": [
"-1"
@@ -718,13 +718,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1085?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTA4NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50452192-a38a-4803-9a17-cedb5d9e551f"
+ "7b283155-dc4f-4044-aec7-0bc76390719d"
],
"If-Match": [
"*"
@@ -733,10 +733,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -753,7 +753,7 @@
"nosniff"
],
"x-ms-request-id": [
- "765eed66-9156-4142-86b0-21ca29898431"
+ "1fff5ba2-7b63-498d-bd85-4dbb2c92987b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -762,13 +762,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "4419bfdc-2d26-41ea-8dab-65617f09085a"
+ "1fff5ba2-7b63-498d-bd85-4dbb2c92987b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T002507Z:4419bfdc-2d26-41ea-8dab-65617f09085a"
+ "WESTUS:20220401T231006Z:1fff5ba2-7b63-498d-bd85-4dbb2c92987b"
],
"Date": [
- "Tue, 13 Jul 2021 00:25:07 GMT"
+ "Fri, 01 Apr 2022 23:10:06 GMT"
],
"Expires": [
"-1"
@@ -783,16 +783,16 @@
],
"Names": {
"": [
- "ps8106",
- "ps3536",
- "ps6703",
- "ps4102",
- "ps8180",
- "ps9383",
- "ps9012"
+ "ps1085",
+ "ps438",
+ "ps3801",
+ "ps5613",
+ "ps8767",
+ "ps9154",
+ "ps2844"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json
index 8518e51f08db..9e30fd2f541c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromFile\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95ea760c-5b00-439a-81ad-c35fc0be313f"
+ "f962f0e0-94d4-4ffe-847d-0c217f1e3a25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01&asyncId=60ecd918a2ca601290f0cb29&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01&asyncId=62474a99217d200d902d7dab&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ec62aaaa-874e-4d05-823b-b7fdc017cffc"
+ "4980647d-8a90-4165-9d3f-94a9889109e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,13 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e4f7d0c7-02e0-4e6f-bbfe-42d156c6fb58"
+ "4980647d-8a90-4165-9d3f-94a9889109e0"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000648Z:e4f7d0c7-02e0-4e6f-bbfe-42d156c6fb58"
+ "WESTCENTRALUS:20220401T185521Z:4980647d-8a90-4165-9d3f-94a9889109e0"
],
"Date": [
- "Tue, 13 Jul 2021 00:06:48 GMT"
+ "Fri, 01 Apr 2022 18:55:21 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01&asyncId=60ecd918a2ca601290f0cb29&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDkxOGEyY2E2MDEyOTBmMGNiMjkmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01&asyncId=62474a99217d200d902d7dab&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhOTkyMTdkMjAwZDkwMmQ3ZGFiJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95ea760c-5b00-439a-81ad-c35fc0be313f"
+ "f962f0e0-94d4-4ffe-847d-0c217f1e3a25"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/zQ=\""
+ "\"AAAAAAAACuI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,25 +102,25 @@
"nosniff"
],
"x-ms-request-id": [
- "3cdad73d-4bb5-4fd9-9cf7-22dcca62ecfd"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "6b5308d4-d9e7-4eed-9d08-8efe0734a0bb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "e8ea98be-abaa-4f1e-96be-e2f4541d7690"
+ "6b5308d4-d9e7-4eed-9d08-8efe0734a0bb"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000718Z:e8ea98be-abaa-4f1e-96be-e2f4541d7690"
+ "WESTCENTRALUS:20220401T185551Z:6b5308d4-d9e7-4eed-9d08-8efe0734a0bb"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:17 GMT"
+ "Fri, 01 Apr 2022 18:55:51 GMT"
],
"Content-Length": [
- "786"
+ "796"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5882\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2267\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95ea760c-5b00-439a-81ad-c35fc0be313f"
+ "f962f0e0-94d4-4ffe-847d-0c217f1e3a25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/zQ=\""
+ "\"AAAAAAAACuI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "71b3c622-893c-4494-a0d4-1f95ef2eb171"
+ "2838ad06-ce1c-46b0-ae53-b68c998722f3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "d46f3bfb-a4e0-4004-a682-d2bf2c24e209"
+ "2838ad06-ce1c-46b0-ae53-b68c998722f3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000718Z:d46f3bfb-a4e0-4004-a682-d2bf2c24e209"
+ "WESTCENTRALUS:20220401T185552Z:2838ad06-ce1c-46b0-ae53-b68c998722f3"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:17 GMT"
+ "Fri, 01 Apr 2022 18:55:51 GMT"
],
"Content-Length": [
- "786"
+ "796"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5882\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2267\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c5229c2-2182-4039-9fba-9cd525eae999"
+ "6c706ba9-579a-4190-a2fe-b5f76a947c65"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "86f6343d-4d18-49a6-9b2d-cba5faa5c353"
+ "a32c9435-f1f7-4d57-a017-3604eed63ab4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "6a71f2f0-a620-4585-9dae-7f36fd1ddff6"
+ "a32c9435-f1f7-4d57-a017-3604eed63ab4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000718Z:6a71f2f0-a620-4585-9dae-7f36fd1ddff6"
+ "WESTCENTRALUS:20220401T185552Z:a32c9435-f1f7-4d57-a017-3604eed63ab4"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:17 GMT"
+ "Fri, 01 Apr 2022 18:55:51 GMT"
],
"Content-Length": [
- "6975"
+ "6985"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,26 +258,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bac5cb48-dbfe-4044-be2f-0ae9aa1a23e8"
+ "c268a59e-79f1-4ba6-b692-b55c85516398"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,7 +294,7 @@
"nosniff"
],
"x-ms-request-id": [
- "fc22f2d8-88ce-4fd3-ba20-46cf86a055a5"
+ "22a84581-24fe-486e-a96f-d8ce43f7d63a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -303,16 +303,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "e8490aae-0ad2-46e1-89e5-a99d1c1c1ab0"
+ "22a84581-24fe-486e-a96f-d8ce43f7d63a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000749Z:e8490aae-0ad2-46e1-89e5-a99d1c1c1ab0"
+ "WESTCENTRALUS:20220401T185623Z:22a84581-24fe-486e-a96f-d8ce43f7d63a"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:48 GMT"
+ "Fri, 01 Apr 2022 18:56:22 GMT"
],
"Content-Length": [
- "1960"
+ "1970"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,26 +321,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1299308a-b0b1-41ee-8447-af5371cd133f"
+ "17e22c65-ef80-413f-b378-6234d2b0287c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -357,7 +357,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd937a2ca601290f0cb30&asyncCode=200"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ab9217d200d902d7db2&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "dc498e22-127d-4b2a-b796-a7f4c71c6a6f"
+ "da2ca309-25b5-4faf-9f5b-415cf548005d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,13 +375,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "510e0d71-9936-4f36-a8b7-faae82c3180a"
+ "da2ca309-25b5-4faf-9f5b-415cf548005d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000719Z:510e0d71-9936-4f36-a8b7-faae82c3180a"
+ "WESTCENTRALUS:20220401T185553Z:da2ca309-25b5-4faf-9f5b-415cf548005d"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:18 GMT"
+ "Fri, 01 Apr 2022 18:55:52 GMT"
],
"Expires": [
"-1"
@@ -394,13 +394,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d08ec6f-3107-4eac-bae7-58a3abeeccfc"
+ "f4914a71-8c31-40e0-97e6-7f90f7f198a9"
],
"If-Match": [
"*"
@@ -409,10 +409,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -429,7 +429,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd955a2ca601290f0cb34&asyncCode=200"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ad7217d200d902d7db6&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -438,7 +438,7 @@
"nosniff"
],
"x-ms-request-id": [
- "1c4b0d93-a982-443f-b4b7-0048901a2b3c"
+ "acbbcbc8-f1bf-4efb-8545-4ff5ba5b2ab8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -447,13 +447,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "576b7a0d-95b8-42c9-b25a-442abb49273d"
+ "acbbcbc8-f1bf-4efb-8545-4ff5ba5b2ab8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000750Z:576b7a0d-95b8-42c9-b25a-442abb49273d"
+ "WESTCENTRALUS:20220401T185623Z:acbbcbc8-f1bf-4efb-8545-4ff5ba5b2ab8"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:49 GMT"
+ "Fri, 01 Apr 2022 18:56:23 GMT"
],
"Expires": [
"-1"
@@ -466,19 +466,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd937a2ca601290f0cb30&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDkzN2EyY2E2MDEyOTBmMGNiMzAmYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ab9217d200d902d7db2&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhYjkyMTdkMjAwZDkwMmQ3ZGIyJmFzeW5jQ29kZT0yMDA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1299308a-b0b1-41ee-8447-af5371cd133f"
+ "17e22c65-ef80-413f-b378-6234d2b0287c"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,7 +489,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/0k=\""
+ "\"AAAAAAAACvc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -498,7 +498,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e1c3f74b-3467-4016-aa88-b7be05a51795"
+ "f8a1fb5f-7c61-4ef8-be36-dbdbf3dd3253"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,16 +507,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "6d647246-de7b-46c6-8d12-964ce7c98648"
+ "f8a1fb5f-7c61-4ef8-be36-dbdbf3dd3253"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000749Z:6d647246-de7b-46c6-8d12-964ce7c98648"
+ "WESTCENTRALUS:20220401T185623Z:f8a1fb5f-7c61-4ef8-be36-dbdbf3dd3253"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:48 GMT"
+ "Fri, 01 Apr 2022 18:56:22 GMT"
],
"Content-Length": [
- "1876"
+ "1886"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -525,26 +525,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42a1d561-1423-4723-b32e-77b41f861533"
+ "b5d1f84f-c8a2-43ab-9920-fa59d62211b0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -555,7 +555,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/0k=\""
+ "\"AAAAAAAACvc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -564,7 +564,7 @@
"nosniff"
],
"x-ms-request-id": [
- "64e58306-7110-4266-9cd6-e0fcb2cd4f9e"
+ "eda209bc-1101-46f6-a85b-4a42e635d1b0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,16 +573,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "ec5e55e8-52dc-4848-984a-78feaaa7e046"
+ "eda209bc-1101-46f6-a85b-4a42e635d1b0"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000749Z:ec5e55e8-52dc-4848-984a-78feaaa7e046"
+ "WESTCENTRALUS:20220401T185623Z:eda209bc-1101-46f6-a85b-4a42e635d1b0"
],
"Date": [
- "Tue, 13 Jul 2021 00:07:48 GMT"
+ "Fri, 01 Apr 2022 18:56:22 GMT"
],
"Content-Length": [
- "1876"
+ "1886"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -591,23 +591,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2?api-version=2020-12-01&asyncId=60ecd955a2ca601290f0cb34&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyL3NjaGVtYXMvZDJjZGYzMGQtYmY0OS00NjFiLWFkOGEtYmMwMDA5OWQ0MWEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZDk1NWEyY2E2MDEyOTBmMGNiMzQmYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d?api-version=2021-08-01&asyncId=62474ad7217d200d902d7db6&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Ny9zY2hlbWFzLzJlNmUxNzNhLWRlYmItNDc5OS1hMzc0LTE2ODAwMTBiMzA2ZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRhZDcyMTdkMjAwZDkwMmQ3ZGI2JmFzeW5jQ29kZT0yMDA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d08ec6f-3107-4eac-bae7-58a3abeeccfc"
+ "f4914a71-8c31-40e0-97e6-7f90f7f198a9"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -618,7 +618,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/00=\""
+ "\"AAAAAAAACvs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -627,25 +627,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d1d19365-b721-4854-9e45-955fa1cc0bce"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "c244b529-fdfb-42f7-a054-52b947d8cfb2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "16b892a2-7207-4cb9-80c0-b60855927610"
+ "c244b529-fdfb-42f7-a054-52b947d8cfb2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000820Z:16b892a2-7207-4cb9-80c0-b60855927610"
+ "WESTCENTRALUS:20220401T185653Z:c244b529-fdfb-42f7-a054-52b947d8cfb2"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:19 GMT"
+ "Fri, 01 Apr 2022 18:56:53 GMT"
],
"Content-Length": [
- "1855"
+ "1865"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -654,17 +654,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882/schemas/d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d2cdf30d-bf49-461b-ad8a-bc00099d41a2\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267/schemas/2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2e6e173a-debb-4799-a374-1680010b306d\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps2267?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMjI2Nz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef45c5f7-2cad-4ff5-a33b-1c0747701109"
+ "9de504a2-4787-4c71-b279-492c143f1b95"
],
"If-Match": [
"*"
@@ -673,10 +673,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -693,7 +693,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f3dc754d-ef67-47b4-981a-87b3bdfd9f30"
+ "87cdfe64-cc45-4a4f-b1d1-4f8643c84cf3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -702,13 +702,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "a36f9e0e-06d2-48e0-9f62-642d7302886c"
+ "87cdfe64-cc45-4a4f-b1d1-4f8643c84cf3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000820Z:a36f9e0e-06d2-48e0-9f62-642d7302886c"
+ "WESTCENTRALUS:20220401T185654Z:87cdfe64-cc45-4a4f-b1d1-4f8643c84cf3"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:19 GMT"
+ "Fri, 01 Apr 2022 18:56:53 GMT"
],
"Expires": [
"-1"
@@ -723,11 +723,11 @@
],
"Names": {
"": [
- "ps5882",
- "ps9374"
+ "ps2267",
+ "ps9636"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json
index 077f929ac23a..0191fcd28f22 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "694059a0-5262-4fbc-8f5c-f5722044436f"
+ "345f8c9b-b3e4-4f50-a979-674eb976dfa3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,22 +33,22 @@
"nosniff"
],
"x-ms-request-id": [
- "7a125e32-266d-4463-994b-4ce15dda918b"
+ "a1f26b65-326c-4e55-a246-89706c20c8aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "eb0d1e3f-01a6-4ec6-b347-e40b05f9f16d"
+ "a1f26b65-326c-4e55-a246-89706c20c8aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001753Z:eb0d1e3f-01a6-4ec6-b347-e40b05f9f16d"
+ "WESTCENTRALUS:20220401T190416Z:a1f26b65-326c-4e55-a246-89706c20c8aa"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:52 GMT"
+ "Fri, 01 Apr 2022 19:04:15 GMT"
],
"Content-Length": [
"34"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1439\",\r\n \"versionQueryName\": \"ps2476\",\r\n \"displayName\": \"ps9130\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3756\",\r\n \"versionQueryName\": \"ps9658\",\r\n \"displayName\": \"ps4216\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a691f1da-10c0-47a6-8772-11c0956f42e1"
+ "69497c1d-ef2c-4ec7-b5c7-328a9f48d59c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,7 +96,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAYQ=\""
+ "\"AAAAAAAADUY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -105,25 +105,25 @@
"nosniff"
],
"x-ms-request-id": [
- "255df385-59aa-4ed3-9afe-31bb74f55762"
+ "4dda32fc-ac87-47b4-bf8f-7d7895480919"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "53261d75-f3a5-49b1-9ec6-54d8825d914d"
+ "4dda32fc-ac87-47b4-bf8f-7d7895480919"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001753Z:53261d75-f3a5-49b1-9ec6-54d8825d914d"
+ "WESTCENTRALUS:20220401T190416Z:4dda32fc-ac87-47b4-bf8f-7d7895480919"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:52 GMT"
+ "Fri, 01 Apr 2022 19:04:15 GMT"
],
"Content-Length": [
- "447"
+ "459"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,17 +132,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2476\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps9658\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1439\",\r\n \"versionHeaderName\": \"ps5544\",\r\n \"displayName\": \"ps9130\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3756\",\r\n \"versionHeaderName\": \"ps7337\",\r\n \"displayName\": \"ps4216\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92590e3a-f817-4f1f-92a9-7694a9bbe7e7"
+ "e4f298e9-3287-42b9-90ff-3f820281be50"
],
"If-Match": [
"*"
@@ -151,10 +151,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -171,7 +171,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAYg=\""
+ "\"AAAAAAAADUo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -180,25 +180,25 @@
"nosniff"
],
"x-ms-request-id": [
- "7a4e2a98-9862-4aca-9be8-f22f0f09e511"
+ "0c4ac8ee-3ed2-4f21-8ed1-6c89bdfb7d3b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "d7d10e5f-92cc-42ca-b1ff-8b308dd16a19"
+ "0c4ac8ee-3ed2-4f21-8ed1-6c89bdfb7d3b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001754Z:d7d10e5f-92cc-42ca-b1ff-8b308dd16a19"
+ "WESTCENTRALUS:20220401T190416Z:0c4ac8ee-3ed2-4f21-8ed1-6c89bdfb7d3b"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:53 GMT"
+ "Fri, 01 Apr 2022 19:04:15 GMT"
],
"Content-Length": [
- "448"
+ "460"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -207,26 +207,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps5544\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7337\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92590e3a-f817-4f1f-92a9-7694a9bbe7e7"
+ "e4f298e9-3287-42b9-90ff-3f820281be50"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,7 +237,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAYQ=\""
+ "\"AAAAAAAADUY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -246,25 +246,25 @@
"nosniff"
],
"x-ms-request-id": [
- "3d7a4932-1b9a-4c0e-94b4-95324ce1de0a"
+ "41853da0-eb3b-4a62-99be-3d4d31101d75"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-correlation-request-id": [
- "33a1ae3a-b925-4890-adda-4afe14bef34f"
+ "41853da0-eb3b-4a62-99be-3d4d31101d75"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001754Z:33a1ae3a-b925-4890-adda-4afe14bef34f"
+ "WESTCENTRALUS:20220401T190416Z:41853da0-eb3b-4a62-99be-3d4d31101d75"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:53 GMT"
+ "Fri, 01 Apr 2022 19:04:15 GMT"
],
"Content-Length": [
- "447"
+ "459"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -273,26 +273,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2476\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps9658\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69c44aee-95d2-4484-8152-566b4a4a0160"
+ "697c8822-dd3e-40a9-8c49-81d8cbcfbc90"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -303,7 +303,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAYg=\""
+ "\"AAAAAAAADUo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -312,25 +312,25 @@
"nosniff"
],
"x-ms-request-id": [
- "148a735a-4f12-41e6-8b4f-23db93dc9c7b"
+ "50ef2ddb-adf2-40c7-b566-1f00ade13564"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "959ceac3-949b-4e9d-8aba-b71fe78f5c08"
+ "50ef2ddb-adf2-40c7-b566-1f00ade13564"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001754Z:959ceac3-949b-4e9d-8aba-b71fe78f5c08"
+ "WESTCENTRALUS:20220401T190417Z:50ef2ddb-adf2-40c7-b566-1f00ade13564"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:53 GMT"
+ "Fri, 01 Apr 2022 19:04:16 GMT"
],
"Content-Length": [
- "448"
+ "460"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -339,26 +339,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps698\",\r\n \"properties\": {\r\n \"displayName\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps5544\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2834\",\r\n \"properties\": {\r\n \"displayName\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7337\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06568126-3f4f-4da1-8016-d6a9efb167e9"
+ "410ba509-d4fb-43bc-8761-ef72a7cc038d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -375,7 +375,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01&asyncId=60ecdbb2a2ca601290f0cbc7&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01&asyncId=62474cb1217d200d902d7e4b&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -384,22 +384,22 @@
"nosniff"
],
"x-ms-request-id": [
- "886f6dbd-dbea-4fbc-a840-2504e473e350"
+ "cdd99f81-1f9c-4d20-a4a9-dba934f5b757"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "39bc2b99-b01b-4ea8-90e9-392f6da314c6"
+ "cdd99f81-1f9c-4d20-a4a9-dba934f5b757"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001755Z:39bc2b99-b01b-4ea8-90e9-392f6da314c6"
+ "WESTCENTRALUS:20220401T190417Z:cdd99f81-1f9c-4d20-a4a9-dba934f5b757"
],
"Date": [
- "Tue, 13 Jul 2021 00:17:54 GMT"
+ "Fri, 01 Apr 2022 19:04:16 GMT"
],
"Expires": [
"-1"
@@ -412,19 +412,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01&asyncId=60ecdbb2a2ca601290f0cbc7&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGJiMmEyY2E2MDEyOTBmMGNiYzcmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01&asyncId=62474cb1217d200d902d7e4b&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc0Y2IxMjE3ZDIwMGQ5MDJkN2U0YiZhc3luY0NvZGU9MjAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06568126-3f4f-4da1-8016-d6a9efb167e9"
+ "410ba509-d4fb-43bc-8761-ef72a7cc038d"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,7 +435,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAYw=\""
+ "\"AAAAAAAADU4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,25 +444,25 @@
"nosniff"
],
"x-ms-request-id": [
- "a3d6cbd7-6b7a-4257-b545-bc49648dae4a"
+ "8e406644-0461-437c-a0bd-2840711f240d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "588c5def-1de9-4a87-bf85-a2638f5067c0"
+ "8e406644-0461-437c-a0bd-2840711f240d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001825Z:588c5def-1de9-4a87-bf85-a2638f5067c0"
+ "WESTCENTRALUS:20220401T190447Z:8e406644-0461-437c-a0bd-2840711f240d"
],
"Date": [
- "Tue, 13 Jul 2021 00:18:25 GMT"
+ "Fri, 01 Apr 2022 19:04:47 GMT"
],
"Content-Length": [
- "884"
+ "1207"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,26 +471,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8731\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps72\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06568126-3f4f-4da1-8016-d6a9efb167e9"
+ "410ba509-d4fb-43bc-8761-ef72a7cc038d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,7 +501,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAYw=\""
+ "\"AAAAAAAADU4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -510,25 +510,25 @@
"nosniff"
],
"x-ms-request-id": [
- "322d9a2f-339d-42a8-96e8-3f8512ba3ff8"
+ "e381ed5e-629e-4f46-8886-9ce8a7a18d72"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "a1bb91d4-e3f6-41c0-8f7a-c181e982a986"
+ "e381ed5e-629e-4f46-8886-9ce8a7a18d72"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001825Z:a1bb91d4-e3f6-41c0-8f7a-c181e982a986"
+ "WESTCENTRALUS:20220401T190447Z:e381ed5e-629e-4f46-8886-9ce8a7a18d72"
],
"Date": [
- "Tue, 13 Jul 2021 00:18:25 GMT"
+ "Fri, 01 Apr 2022 19:04:47 GMT"
],
"Content-Length": [
- "884"
+ "1207"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,17 +537,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8731\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps72\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731%3Brev%3D1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72%3Brev%3D1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzIlM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"v1\",\r\n \"isCurrent\": true,\r\n \"apiVersionDescription\": \"ps1439\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"v1\",\r\n \"isCurrent\": true,\r\n \"apiVersionDescription\": \"ps3756\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"Http\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ae96afe-6d9d-42e4-ac8c-b50bfc6245a1"
+ "8c3cad3e-4e48-4000-92d0-4a142e26e08b"
],
"If-Match": [
"*"
@@ -556,16 +556,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "836"
+ "847"
]
},
"ResponseHeaders": {
@@ -576,7 +576,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAbU=\""
+ "\"AAAAAAAADXg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -585,25 +585,25 @@
"nosniff"
],
"x-ms-request-id": [
- "e6647eae-b2d2-43d2-885b-7b2587dc12fe"
+ "9c3e894a-f868-465f-9710-ac33769bf842"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1195"
],
"x-ms-correlation-request-id": [
- "23b6d88c-57d8-4012-9388-b263bbf2c621"
+ "9c3e894a-f868-465f-9710-ac33769bf842"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001826Z:23b6d88c-57d8-4012-9388-b263bbf2c621"
+ "WESTCENTRALUS:20220401T190448Z:9c3e894a-f868-465f-9710-ac33769bf842"
],
"Date": [
- "Tue, 13 Jul 2021 00:18:26 GMT"
+ "Fri, 01 Apr 2022 19:04:47 GMT"
],
"Content-Length": [
- "1520"
+ "1548"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -612,17 +612,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8731\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"v1\",\r\n \"apiVersionDescription\": \"ps1439\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698\",\r\n \"name\": \"ps9130\",\r\n \"description\": \"ps1439\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps5544\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps72\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"v1\",\r\n \"apiVersionDescription\": \"ps3756\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834\",\r\n \"name\": \"ps4216\",\r\n \"description\": \"ps3756\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7337\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps72?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzNzI/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3e2482c-eab0-41e7-986b-b4ff11536ec5"
+ "20db40a1-c07f-47ad-9680-ea62d3087531"
],
"If-Match": [
"*"
@@ -631,10 +631,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -651,7 +651,7 @@
"nosniff"
],
"x-ms-request-id": [
- "77c09b37-a412-4db7-8fb7-fc91b2c91b5d"
+ "3ebd05a4-14bf-49a9-b706-6215e47cb6a9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -660,13 +660,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "aa429dba-606a-4bd6-b2bb-0c4f9f5e47e2"
+ "3ebd05a4-14bf-49a9-b706-6215e47cb6a9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001826Z:aa429dba-606a-4bd6-b2bb-0c4f9f5e47e2"
+ "WESTCENTRALUS:20220401T190448Z:3ebd05a4-14bf-49a9-b706-6215e47cb6a9"
],
"Date": [
- "Tue, 13 Jul 2021 00:18:26 GMT"
+ "Fri, 01 Apr 2022 19:04:48 GMT"
],
"Expires": [
"-1"
@@ -679,13 +679,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps2834?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczI4MzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c04f2ec-1226-4a02-9322-5de9234619ae"
+ "b73d081a-6b87-4f52-bb2c-4e41c04fe3d6"
],
"If-Match": [
"*"
@@ -694,10 +694,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -714,7 +714,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ef2a74ed-5877-4224-bf6c-8d71ed836b2b"
+ "faed0eb4-f8cd-41ba-a88e-14e8a47ecb4e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -723,13 +723,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "f30aedbf-a04a-4e70-ac4e-fe8cdf51392d"
+ "faed0eb4-f8cd-41ba-a88e-14e8a47ecb4e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001826Z:f30aedbf-a04a-4e70-ac4e-fe8cdf51392d"
+ "WESTCENTRALUS:20220401T190448Z:faed0eb4-f8cd-41ba-a88e-14e8a47ecb4e"
],
"Date": [
- "Tue, 13 Jul 2021 00:18:26 GMT"
+ "Fri, 01 Apr 2022 19:04:48 GMT"
],
"Expires": [
"-1"
@@ -741,15 +741,15 @@
],
"Names": {
"": [
- "ps8731",
- "ps698",
- "ps9130",
- "ps2476",
- "ps1439",
- "ps5544"
+ "ps72",
+ "ps2834",
+ "ps4216",
+ "ps9658",
+ "ps3756",
+ "ps7337"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json
index 5cfd4596db91..555e4fa0436b 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e749a228-d30f-4a4b-b697-439a906a9034"
+ "61af6515-6c23-4fba-8c18-1b84f024d1e3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d4920a65-5591-4800-9272-92b64ec02c97"
+ "b9a59879-e551-404c-8f8a-7a37d4441140"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,13 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "814c07b0-1660-4b5d-94c3-3b0eabdfca78"
+ "b9a59879-e551-404c-8f8a-7a37d4441140"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001905Z:814c07b0-1660-4b5d-94c3-3b0eabdfca78"
+ "WESTUS:20220401T190530Z:b9a59879-e551-404c-8f8a-7a37d4441140"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:04 GMT"
+ "Fri, 01 Apr 2022 19:05:29 GMT"
],
"Content-Length": [
"34"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8685\",\r\n \"versionQueryName\": \"ps6390\",\r\n \"displayName\": \"ps1973\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1419\",\r\n \"versionQueryName\": \"ps8386\",\r\n \"displayName\": \"ps6116\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e7277a6c-b6bd-40fe-a8e1-45b05ffef395"
+ "6ed4ec1b-fd35-4ce1-b832-92a325aa6ff0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,7 +96,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAdA=\""
+ "\"AAAAAAAADZM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -105,7 +105,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0a826adf-7105-4e20-8356-463f5bde287f"
+ "12080afe-906f-4624-bf16-dd6c8c8b77c9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,16 +114,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "4113f4d5-7050-4b0e-a19f-2385f1ed05da"
+ "12080afe-906f-4624-bf16-dd6c8c8b77c9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001905Z:4113f4d5-7050-4b0e-a19f-2385f1ed05da"
+ "WESTUS:20220401T190530Z:12080afe-906f-4624-bf16-dd6c8c8b77c9"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:04 GMT"
+ "Fri, 01 Apr 2022 19:05:29 GMT"
],
"Content-Length": [
- "449"
+ "459"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,17 +132,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps6390\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8386\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8685\",\r\n \"versionHeaderName\": \"ps4909\",\r\n \"displayName\": \"ps1973\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1419\",\r\n \"versionHeaderName\": \"ps3586\",\r\n \"displayName\": \"ps6116\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce99e6cf-242c-43ab-b4fe-5b72ebd2ae1a"
+ "53ac0f26-a3e7-46cc-ac15-70383e1ac025"
],
"If-Match": [
"*"
@@ -151,10 +151,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -171,7 +171,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAdQ=\""
+ "\"AAAAAAAADZc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -180,7 +180,7 @@
"nosniff"
],
"x-ms-request-id": [
- "73731ab5-b0ca-4aff-a4e6-8f595ba4c7ef"
+ "042afe04-81d8-4b7d-82f2-142a94fcc3d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -189,16 +189,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "f9f54d6d-3300-4e42-87dc-3d238ea1470d"
+ "042afe04-81d8-4b7d-82f2-142a94fcc3d5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001906Z:f9f54d6d-3300-4e42-87dc-3d238ea1470d"
+ "WESTUS:20220401T190531Z:042afe04-81d8-4b7d-82f2-142a94fcc3d5"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:05 GMT"
+ "Fri, 01 Apr 2022 19:05:30 GMT"
],
"Content-Length": [
- "450"
+ "460"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -207,26 +207,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps4909\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps3586\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce99e6cf-242c-43ab-b4fe-5b72ebd2ae1a"
+ "53ac0f26-a3e7-46cc-ac15-70383e1ac025"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,7 +237,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAdA=\""
+ "\"AAAAAAAADZM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -246,7 +246,7 @@
"nosniff"
],
"x-ms-request-id": [
- "08afc377-4f45-43a2-97fb-50688b569681"
+ "447993f6-9703-450f-81f5-3bab4950b5a4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -255,16 +255,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "71a69b0d-ceff-47a9-a0f9-c42705248919"
+ "447993f6-9703-450f-81f5-3bab4950b5a4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001905Z:71a69b0d-ceff-47a9-a0f9-c42705248919"
+ "WESTUS:20220401T190530Z:447993f6-9703-450f-81f5-3bab4950b5a4"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:05 GMT"
+ "Fri, 01 Apr 2022 19:05:30 GMT"
],
"Content-Length": [
- "449"
+ "459"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -273,26 +273,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps6390\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8386\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee400bcf-95ec-4bb6-880b-99676147b782"
+ "fec4d081-5e72-4159-b7f5-11642b2589ea"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -303,7 +303,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAdQ=\""
+ "\"AAAAAAAADZc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -312,7 +312,7 @@
"nosniff"
],
"x-ms-request-id": [
- "afffbc59-bc8a-4090-a7cd-f38000498a09"
+ "1406c205-f4cc-4a40-9fc9-5b85ecac777b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -321,16 +321,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "3f2a578b-d642-4f0c-b966-e53846510cf8"
+ "1406c205-f4cc-4a40-9fc9-5b85ecac777b"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001906Z:3f2a578b-d642-4f0c-b966-e53846510cf8"
+ "WESTUS:20220401T190531Z:1406c205-f4cc-4a40-9fc9-5b85ecac777b"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:05 GMT"
+ "Fri, 01 Apr 2022 19:05:30 GMT"
],
"Content-Length": [
- "450"
+ "460"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -339,26 +339,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4945\",\r\n \"properties\": {\r\n \"displayName\": \"ps1973\",\r\n \"description\": \"ps8685\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps4909\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps7374\",\r\n \"properties\": {\r\n \"displayName\": \"ps6116\",\r\n \"description\": \"ps1419\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps3586\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps4945\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps7374\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58e4c51f-f9e1-4c47-bafd-764590fd9440"
+ "180ba2ce-a711-4db3-a954-ea646048be89"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -375,7 +375,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01&asyncId=60ecdbfaa2ca601290f0cbd7&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01&asyncId=62474cfb217d200d902d7e5b&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -384,7 +384,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e25fa03f-b12f-4a0a-9d1d-acdc37ba7034"
+ "95fe3437-19fd-4075-9065-bd21e732824f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -393,13 +393,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "99fe33ec-822d-4237-bcc7-baa8205ff155"
+ "95fe3437-19fd-4075-9065-bd21e732824f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001906Z:99fe33ec-822d-4237-bcc7-baa8205ff155"
+ "WESTUS:20220401T190531Z:95fe3437-19fd-4075-9065-bd21e732824f"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:05 GMT"
+ "Fri, 01 Apr 2022 19:05:30 GMT"
],
"Expires": [
"-1"
@@ -412,19 +412,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01&asyncId=60ecdbfaa2ca601290f0cbd7&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGJmYWEyY2E2MDEyOTBmMGNiZDcmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01&asyncId=62474cfb217d200d902d7e5b&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRjZmIyMTdkMjAwZDkwMmQ3ZTViJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58e4c51f-f9e1-4c47-bafd-764590fd9440"
+ "180ba2ce-a711-4db3-a954-ea646048be89"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,7 +435,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAdg=\""
+ "\"AAAAAAAADZs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b8cc24c7-7eef-4bef-871d-921c99149b55"
+ "03044a25-c2f7-4295-9cfd-f341ce2fdb7f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -453,16 +453,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "4b0b6328-953a-47d3-8674-c788eb84e230"
+ "03044a25-c2f7-4295-9cfd-f341ce2fdb7f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001936Z:4b0b6328-953a-47d3-8674-c788eb84e230"
+ "WESTUS:20220401T190601Z:03044a25-c2f7-4295-9cfd-f341ce2fdb7f"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:36 GMT"
+ "Fri, 01 Apr 2022 19:06:01 GMT"
],
"Content-Length": [
- "1102"
+ "1439"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,26 +471,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4334\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9114\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58e4c51f-f9e1-4c47-bafd-764590fd9440"
+ "180ba2ce-a711-4db3-a954-ea646048be89"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,7 +501,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAdg=\""
+ "\"AAAAAAAADZs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -510,7 +510,7 @@
"nosniff"
],
"x-ms-request-id": [
- "76297f5d-8d46-4ba8-a3f6-d6840071e6dd"
+ "06d8f844-54bd-467a-9a67-a289221311ba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -519,16 +519,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "71ecb2a4-7048-4a00-89cb-efc58e80b647"
+ "06d8f844-54bd-467a-9a67-a289221311ba"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001936Z:71ecb2a4-7048-4a00-89cb-efc58e80b647"
+ "WESTUS:20220401T190601Z:06d8f844-54bd-467a-9a67-a289221311ba"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:36 GMT"
+ "Fri, 01 Apr 2022 19:06:01 GMT"
],
"Content-Length": [
- "1102"
+ "1439"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,17 +537,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4334\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9114\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps9114?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzOTExND9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c024c112-540e-4327-9d4b-33d3f8b01330"
+ "ee6359e0-9da6-4641-9b81-1a9a445dcda3"
],
"If-Match": [
"*"
@@ -556,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -576,7 +576,7 @@
"nosniff"
],
"x-ms-request-id": [
- "62fdf8f2-80fb-4af5-98a4-7373b359d0c9"
+ "3c6b6ef5-da76-496f-a1ee-281a6bd61822"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -585,13 +585,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "040f00d3-4e61-4347-ad89-0ff04b060ff2"
+ "3c6b6ef5-da76-496f-a1ee-281a6bd61822"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001937Z:040f00d3-4e61-4347-ad89-0ff04b060ff2"
+ "WESTUS:20220401T190602Z:3c6b6ef5-da76-496f-a1ee-281a6bd61822"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:37 GMT"
+ "Fri, 01 Apr 2022 19:06:01 GMT"
],
"Expires": [
"-1"
@@ -604,13 +604,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apiVersionSets/ps7374?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlWZXJzaW9uU2V0cy9wczczNzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ab4006a-f304-4184-85c9-f2c55d531721"
+ "990a7c40-b038-4042-bfcf-d08d4a9a353f"
],
"If-Match": [
"*"
@@ -619,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -639,7 +639,7 @@
"nosniff"
],
"x-ms-request-id": [
- "29d5e838-828f-4e1b-bff8-b6d9d7aa13f3"
+ "f245b85f-3437-4e72-8d0c-5425c88cb2f4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -648,13 +648,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "0f979dc0-511f-462e-8f5e-f5af3a04f1d3"
+ "f245b85f-3437-4e72-8d0c-5425c88cb2f4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001937Z:0f979dc0-511f-462e-8f5e-f5af3a04f1d3"
+ "WESTUS:20220401T190602Z:f245b85f-3437-4e72-8d0c-5425c88cb2f4"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:37 GMT"
+ "Fri, 01 Apr 2022 19:06:01 GMT"
],
"Expires": [
"-1"
@@ -666,15 +666,15 @@
],
"Names": {
"": [
- "ps4334",
- "ps4945",
- "ps1973",
- "ps6390",
- "ps8685",
- "ps4909"
+ "ps9114",
+ "ps7374",
+ "ps6116",
+ "ps8386",
+ "ps1419",
+ "ps3586"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json
index fe7e9a56bd9a..b06b843bc232 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94f784f2-1ce4-4c47-ad73-8ae10f8147fc"
+ "7a1828fc-bca2-40bb-8ca7-edd4e8c17533"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "58031d36-b450-43a5-b51c-3d3d9f687c57"
+ "6a8452c1-eb49-4be5-bae8-0c54d0c38dd5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,13 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "2b1576c8-c74b-42a4-9270-d47c65dae028"
+ "6a8452c1-eb49-4be5-bae8-0c54d0c38dd5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000711Z:2b1576c8-c74b-42a4-9270-d47c65dae028"
+ "WESTUS:20220401T185905Z:6a8452c1-eb49-4be5-bae8-0c54d0c38dd5"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:10 GMT"
+ "Fri, 01 Apr 2022 18:59:05 GMT"
],
"Content-Length": [
"34"
@@ -64,28 +64,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps5403\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6844\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\",\r\n \"displayName\": \"ps1039\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ResourceOwnerPassword\"\r\n ],\r\n \"clientId\": \"ps7996\",\r\n \"clientSecret\": \"ps8283\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4362\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps3573\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\",\r\n \"displayName\": \"ps143\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ResourceOwnerPassword\"\r\n ],\r\n \"clientId\": \"ps3310\",\r\n \"clientSecret\": \"ps4659\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a61ee464-64ed-40c9-a483-129c7a28dbb8"
+ "552bbc2e-b091-45aa-9e2f-adbb5ed854e4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "902"
+ "901"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAmQ=\""
+ "\"AAAAAAAAC6k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -105,7 +105,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6b559e7a-1850-4d06-85a9-2c4578395516"
+ "e0994b49-9aba-4a56-bda8-113f73ecd5bc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,16 +114,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "4a45c406-f542-46a6-bb1a-cf3b0ff8c99e"
+ "e0994b49-9aba-4a56-bda8-113f73ecd5bc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000712Z:4a45c406-f542-46a6-bb1a-cf3b0ff8c99e"
+ "WESTUS:20220401T185907Z:e0994b49-9aba-4a56-bda8-113f73ecd5bc"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:11 GMT"
+ "Fri, 01 Apr 2022 18:59:07 GMT"
],
"Content-Length": [
- "1175"
+ "1182"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,26 +132,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps1039\",\r\n \"description\": \"ps5403\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6844\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps7996\",\r\n \"clientSecret\": \"ps8283\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps143\",\r\n \"description\": \"ps4362\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps3573\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps3310\",\r\n \"clientSecret\": \"ps4659\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe95c4ce-94d7-483e-8a98-6d553eef00ee"
+ "49557a24-0c20-4937-9fad-b69ca6f3c223"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAmQ=\""
+ "\"AAAAAAAAC6k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,7 +171,7 @@
"nosniff"
],
"x-ms-request-id": [
- "3fc5e704-7a9d-47fe-9a0d-5767eaa094aa"
+ "73ed675a-7f4f-4d91-a6a0-36e1f7a36d08"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -180,16 +180,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "0ab800fb-eeb4-4d6c-8adf-159af5574cc7"
+ "73ed675a-7f4f-4d91-a6a0-36e1f7a36d08"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000712Z:0ab800fb-eeb4-4d6c-8adf-159af5574cc7"
+ "WESTUS:20220401T185907Z:73ed675a-7f4f-4d91-a6a0-36e1f7a36d08"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:11 GMT"
+ "Fri, 01 Apr 2022 18:59:07 GMT"
],
"Content-Length": [
- "1064"
+ "1071"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,26 +198,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps1039\",\r\n \"description\": \"ps5403\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6844\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps7996\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps143\",\r\n \"description\": \"ps4362\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps3573\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps3310\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d135c897-7033-4c25-9de5-abb4974921c1"
+ "e75cbb85-492d-4f4d-bf74-5697e74f2d87"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,7 +228,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAmU=\""
+ "\"AAAAAAAAC6o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -237,7 +237,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b4e7b9eb-9fbe-4dae-9e5b-5aa68fdd7027"
+ "84beb42d-f5bb-4b03-819a-181de0ec60b0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,16 +246,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "99423219-b7a9-452f-96a1-2d27a11438b7"
+ "84beb42d-f5bb-4b03-819a-181de0ec60b0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000713Z:99423219-b7a9-452f-96a1-2d27a11438b7"
+ "WESTUS:20220401T185908Z:84beb42d-f5bb-4b03-819a-181de0ec60b0"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:12 GMT"
+ "Fri, 01 Apr 2022 18:59:08 GMT"
],
"Content-Length": [
- "1038"
+ "1046"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,26 +264,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps9198\",\r\n \"description\": \"ps8500\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps9827\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5477\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps8099\",\r\n \"description\": \"ps8125\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8853\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5599\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e66bf703-7247-4414-b9b9-6898d3912c89"
+ "84921373-f46d-423b-af7d-f5e3e3d55c78"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,7 +294,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAmU=\""
+ "\"AAAAAAAAC6o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -303,7 +303,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0f1bd741-c2fe-4804-afac-6acf87745f63"
+ "3bb516b7-8f5d-4661-b9ce-a90d879d38cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,16 +312,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "7d051f2b-ecab-448f-a312-36431635bdb4"
+ "3bb516b7-8f5d-4661-b9ce-a90d879d38cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000713Z:7d051f2b-ecab-448f-a312-36431635bdb4"
+ "WESTUS:20220401T185908Z:3bb516b7-8f5d-4661-b9ce-a90d879d38cf"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:12 GMT"
+ "Fri, 01 Apr 2022 18:59:08 GMT"
],
"Content-Length": [
- "1038"
+ "1046"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,26 +330,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps9198\",\r\n \"description\": \"ps8500\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps9827\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5477\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps8099\",\r\n \"description\": \"ps8125\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8853\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5599\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3402561-6f11-4e07-9248-e8d889facc90"
+ "ef5d19b6-d5f4-4691-a5bd-b2c4c8043b92"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e7a441a4-badc-4141-a62d-2e188b1f6dfa"
+ "c0d27e22-7e07-4123-bd31-7d58c75c502c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,13 +375,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "238bd3a5-093c-422f-bb95-3669c8a0f615"
+ "c0d27e22-7e07-4123-bd31-7d58c75c502c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000713Z:238bd3a5-093c-422f-bb95-3669c8a0f615"
+ "WESTUS:20220401T185909Z:c0d27e22-7e07-4123-bd31-7d58c75c502c"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:13 GMT"
+ "Fri, 01 Apr 2022 18:59:09 GMT"
],
"Content-Length": [
"101"
@@ -397,22 +397,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczNC9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e45d311b-4d0a-4795-9e3b-f558f2c005bf"
+ "5ec22b6a-7b92-4178-9d34-0c7de6984c98"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,7 +423,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAmQ=\""
+ "\"AAAAAAAAC6k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -432,7 +432,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5a3b10c0-4d13-4c15-907d-9bb3f1e2a0d5"
+ "a4271423-25d0-497e-9c1e-2dfccb088a1a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,13 +441,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "c9a1117a-0917-4677-a7ff-2c13a59d759d"
+ "a4271423-25d0-497e-9c1e-2dfccb088a1a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000712Z:c9a1117a-0917-4677-a7ff-2c13a59d759d"
+ "WESTUS:20220401T185908Z:a4271423-25d0-497e-9c1e-2dfccb088a1a"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:11 GMT"
+ "Fri, 01 Apr 2022 18:59:07 GMT"
],
"Content-Length": [
"91"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps8283\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps4659\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczNC9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19b43e93-ea72-49bb-b8f6-62b19adfa338"
+ "c5134751-6d18-4222-a82e-9435e0bd3a3d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,7 +489,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAmU=\""
+ "\"AAAAAAAAC6o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -498,7 +498,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2e1cd02a-1476-4beb-aa7e-621a5e0c19ec"
+ "2ac41547-f876-471f-90e6-9f8bb2585997"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,13 +507,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "c2e27a56-6b74-4b48-beaa-cb7de8e8052d"
+ "2ac41547-f876-471f-90e6-9f8bb2585997"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000713Z:c2e27a56-6b74-4b48-beaa-cb7de8e8052d"
+ "WESTUS:20220401T185908Z:2ac41547-f876-471f-90e6-9f8bb2585997"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:12 GMT"
+ "Fri, 01 Apr 2022 18:59:08 GMT"
],
"Content-Length": [
"91"
@@ -525,17 +525,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps1013\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps7578\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8500\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps9827\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps9198\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ClientCredentials\"\r\n ],\r\n \"clientId\": \"ps5477\",\r\n \"clientSecret\": \"ps1013\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8125\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8853\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps8099\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ClientCredentials\"\r\n ],\r\n \"clientId\": \"ps5599\",\r\n \"clientSecret\": \"ps7578\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d135c897-7033-4c25-9de5-abb4974921c1"
+ "e75cbb85-492d-4f4d-bf74-5697e74f2d87"
],
"If-Match": [
"*"
@@ -544,10 +544,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -564,7 +564,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAmU=\""
+ "\"AAAAAAAAC6o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -573,7 +573,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5a24984a-3f87-48bc-a6ed-e67cfe506d4e"
+ "0ef8eafa-c1e4-407d-a3df-18d130c2c7a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -582,16 +582,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "3ff40f0e-4676-48e8-baaa-25cda86e68ce"
+ "0ef8eafa-c1e4-407d-a3df-18d130c2c7a5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000713Z:3ff40f0e-4676-48e8-baaa-25cda86e68ce"
+ "WESTUS:20220401T185908Z:0ef8eafa-c1e4-407d-a3df-18d130c2c7a5"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:12 GMT"
+ "Fri, 01 Apr 2022 18:59:08 GMT"
],
"Content-Length": [
- "1149"
+ "1157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -600,17 +600,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps9706\",\r\n \"properties\": {\r\n \"displayName\": \"ps9198\",\r\n \"description\": \"ps8500\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps9827\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5477\",\r\n \"clientSecret\": \"ps1013\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps734\",\r\n \"properties\": {\r\n \"displayName\": \"ps8099\",\r\n \"description\": \"ps8125\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8853\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5599\",\r\n \"clientSecret\": \"ps7578\",\r\n \"resourceOwnerUsername\": \"ps7661\",\r\n \"resourceOwnerPassword\": \"ps5177\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/authorizationServers/ps734?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hdXRob3JpemF0aW9uU2VydmVycy9wczczND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a26da834-74fb-4e05-96e5-d1d40ec4c5c9"
+ "de354283-98f6-4a91-99f6-5c786239b8f0"
],
"If-Match": [
"*"
@@ -619,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -639,7 +639,7 @@
"nosniff"
],
"x-ms-request-id": [
- "524b791a-012f-47e4-b506-ef3d16cf7d82"
+ "ed216de5-a5a0-4ef9-8a0f-a3746e68d22e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -648,13 +648,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "c96701c4-76b7-42e4-b368-efc12c88ec68"
+ "ed216de5-a5a0-4ef9-8a0f-a3746e68d22e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210714T000713Z:c96701c4-76b7-42e4-b368-efc12c88ec68"
+ "WESTUS:20220401T185909Z:ed216de5-a5a0-4ef9-8a0f-a3746e68d22e"
],
"Date": [
- "Wed, 14 Jul 2021 00:07:12 GMT"
+ "Fri, 01 Apr 2022 18:59:09 GMT"
],
"Expires": [
"-1"
@@ -669,22 +669,22 @@
],
"Names": {
"": [
- "ps9706",
- "ps1039",
- "ps6844",
- "ps7996",
- "ps5403",
- "ps8283",
- "ps7119",
- "ps7695",
- "ps9198",
- "ps9827",
- "ps5477",
- "ps8500",
- "ps1013"
+ "ps734",
+ "ps143",
+ "ps3573",
+ "ps3310",
+ "ps4362",
+ "ps4659",
+ "ps5177",
+ "ps7661",
+ "ps8099",
+ "ps8853",
+ "ps5599",
+ "ps8125",
+ "ps7578"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json
index 0f476449f4d2..102819565874 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps9399\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps4679\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebc07f0b-b4a8-4b00-aa6c-d412c431c46a"
+ "cbbffe55-5702-4540-8adc-3af1bb91e8e9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAFw=\""
+ "\"AAAAAAAADCE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,25 +42,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b48f99cb-e407-47a5-ae80-b2755468f377"
+ "defa0cb8-73e2-426e-a6d2-3c8884947eb2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "1639c68f-4eb1-4a1c-9e1a-86a2ac60e235"
+ "defa0cb8-73e2-426e-a6d2-3c8884947eb2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001334Z:1639c68f-4eb1-4a1c-9e1a-86a2ac60e235"
+ "WESTCENTRALUS:20220401T190019Z:defa0cb8-73e2-426e-a6d2-3c8884947eb2"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:33 GMT"
+ "Fri, 01 Apr 2022 19:00:18 GMT"
],
"Content-Length": [
- "822"
+ "834"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps9399\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps4679\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7167\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3476\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2947d8c1-6649-4896-b70d-27f1b3635daa"
+ "bbf31a9d-55eb-4baf-b67a-b65575e4dcc6"
],
"If-Match": [
"*"
@@ -88,10 +88,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -108,7 +108,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAF8=\""
+ "\"AAAAAAAADCQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -117,25 +117,25 @@
"nosniff"
],
"x-ms-request-id": [
- "e17065c1-5969-495e-bfa1-52c7970e7fa2"
+ "974f6bcd-c10a-422a-b6dd-5fded312f4bb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-correlation-request-id": [
- "611b3857-c8f2-4f6e-ad52-353cd0445d7f"
+ "974f6bcd-c10a-422a-b6dd-5fded312f4bb"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001335Z:611b3857-c8f2-4f6e-ad52-353cd0445d7f"
+ "WESTCENTRALUS:20220401T190020Z:974f6bcd-c10a-422a-b6dd-5fded312f4bb"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:34 GMT"
+ "Fri, 01 Apr 2022 19:00:19 GMT"
],
"Content-Length": [
- "822"
+ "834"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -144,17 +144,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36609b2b-4b49-4121-b2de-65c5ae51d320"
+ "391522e6-a690-40c4-aad5-598353f3c84a"
],
"If-Match": [
"*"
@@ -163,10 +163,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -183,7 +183,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAGM=\""
+ "\"AAAAAAAADCg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -192,25 +192,25 @@
"nosniff"
],
"x-ms-request-id": [
- "52c4df55-23fa-4bd8-adf8-58679d83220a"
+ "443100f9-9fcb-43a6-9550-3ffb1f2ea644"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1196"
],
"x-ms-correlation-request-id": [
- "9d3bd44d-50ee-4607-a203-db9ba6d5a055"
+ "443100f9-9fcb-43a6-9550-3ffb1f2ea644"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001336Z:9d3bd44d-50ee-4607-a203-db9ba6d5a055"
+ "WESTCENTRALUS:20220401T190022Z:443100f9-9fcb-43a6-9550-3ffb1f2ea644"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:36 GMT"
+ "Fri, 01 Apr 2022 19:00:22 GMT"
],
"Content-Length": [
- "951"
+ "963"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -219,26 +219,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2947d8c1-6649-4896-b70d-27f1b3635daa"
+ "bbf31a9d-55eb-4baf-b67a-b65575e4dcc6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -249,7 +249,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAF8=\""
+ "\"AAAAAAAADCQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -258,25 +258,25 @@
"nosniff"
],
"x-ms-request-id": [
- "eaec136d-e218-4663-8f12-b256d3353618"
+ "0f198846-1af2-48a1-a4a3-8f674f8ebeee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11998"
],
"x-ms-correlation-request-id": [
- "b990dcf3-cbf0-4f8b-a8e3-5feefa6f8dc4"
+ "0f198846-1af2-48a1-a4a3-8f674f8ebeee"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001335Z:b990dcf3-cbf0-4f8b-a8e3-5feefa6f8dc4"
+ "WESTCENTRALUS:20220401T190020Z:0f198846-1af2-48a1-a4a3-8f674f8ebeee"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:34 GMT"
+ "Fri, 01 Apr 2022 19:00:20 GMT"
],
"Content-Length": [
- "822"
+ "834"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -285,26 +285,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "828e7d3e-9237-454d-80b0-7d2f539bc7a2"
+ "616ea130-cdb5-48d0-a028-f9b74eb5d0b3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -315,7 +315,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAF8=\""
+ "\"AAAAAAAADCQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -324,25 +324,25 @@
"nosniff"
],
"x-ms-request-id": [
- "4e90b082-fd04-4843-9f39-8fa24556e142"
+ "dbcf26b6-7880-4d4c-92e7-433a23359e77"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11996"
],
"x-ms-correlation-request-id": [
- "cd824cfe-5149-4d6f-a76c-78414dabc23e"
+ "dbcf26b6-7880-4d4c-92e7-433a23359e77"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001336Z:cd824cfe-5149-4d6f-a76c-78414dabc23e"
+ "WESTCENTRALUS:20220401T190022Z:dbcf26b6-7880-4d4c-92e7-433a23359e77"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:36 GMT"
+ "Fri, 01 Apr 2022 19:00:21 GMT"
],
"Content-Length": [
- "822"
+ "834"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -351,26 +351,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36609b2b-4b49-4121-b2de-65c5ae51d320"
+ "391522e6-a690-40c4-aad5-598353f3c84a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -381,7 +381,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAGM=\""
+ "\"AAAAAAAADCg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -390,25 +390,25 @@
"nosniff"
],
"x-ms-request-id": [
- "22b3493a-f0f9-4583-aeef-9d60d3db1229"
+ "68c4f4df-4aaf-43f6-97c6-6e77a8b8393f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11995"
],
"x-ms-correlation-request-id": [
- "33e5990b-ba18-4429-9143-8d84174ba9d1"
+ "68c4f4df-4aaf-43f6-97c6-6e77a8b8393f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001336Z:33e5990b-ba18-4429-9143-8d84174ba9d1"
+ "WESTCENTRALUS:20220401T190022Z:68c4f4df-4aaf-43f6-97c6-6e77a8b8393f"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:36 GMT"
+ "Fri, 01 Apr 2022 19:00:22 GMT"
],
"Content-Length": [
- "951"
+ "963"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -417,26 +417,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac804e18-a352-40f4-a20d-d94a10170b3f"
+ "74482312-6947-4359-b111-b72d1cb61d50"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -453,22 +453,22 @@
"nosniff"
],
"x-ms-request-id": [
- "ef1de333-34fe-427c-897d-e551121ed756"
+ "48f88050-0d7d-49e2-829b-0d2ef9503a5a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11994"
],
"x-ms-correlation-request-id": [
- "b0c99489-7739-4832-82d9-a126dac5c531"
+ "48f88050-0d7d-49e2-829b-0d2ef9503a5a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001337Z:b0c99489-7739-4832-82d9-a126dac5c531"
+ "WESTCENTRALUS:20220401T190023Z:48f88050-0d7d-49e2-829b-0d2ef9503a5a"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:37 GMT"
+ "Fri, 01 Apr 2022 19:00:23 GMT"
],
"Content-Length": [
"83"
@@ -484,22 +484,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c1a36ec-0cc0-41cc-a824-1a3ab9a75024"
+ "6f2fb9ae-4333-493a-a462-bfbefd57e0fa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -516,25 +516,25 @@
"nosniff"
],
"x-ms-request-id": [
- "52364f3a-d27a-4eea-ac1d-b80410fafd99"
+ "5c971c42-a34f-41a2-83d1-16cb47d7ab8e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11997"
],
"x-ms-correlation-request-id": [
- "dba3597c-2552-4116-9433-daef7def71c8"
+ "5c971c42-a34f-41a2-83d1-16cb47d7ab8e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001336Z:dba3597c-2552-4116-9433-daef7def71c8"
+ "WESTCENTRALUS:20220401T190022Z:5c971c42-a34f-41a2-83d1-16cb47d7ab8e"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:36 GMT"
+ "Fri, 01 Apr 2022 19:00:21 GMT"
],
"Content-Length": [
- "1002"
+ "1014"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -543,17 +543,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps823\",\r\n \"properties\": {\r\n \"title\": \"ps7670\",\r\n \"description\": \"ps7167\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3597\",\r\n \"properties\": {\r\n \"title\": \"ps5714\",\r\n \"description\": \"ps3476\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps3597?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczM1OTc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "645448c4-c36b-4efd-a01b-e75f7d521fbf"
+ "4e33c42c-e6f6-4c44-8b9a-3ae18e8493b7"
],
"If-Match": [
"*"
@@ -562,10 +562,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -582,22 +582,22 @@
"nosniff"
],
"x-ms-request-id": [
- "5478bd13-3fa9-41ce-b3ca-3538d20bd0b4"
+ "9aff95f1-42fb-4cca-8a16-303b776d87c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14995"
+ "14999"
],
"x-ms-correlation-request-id": [
- "2ca9b9d9-c566-4bd7-8668-cbcf17415bd4"
+ "9aff95f1-42fb-4cca-8a16-303b776d87c0"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001337Z:2ca9b9d9-c566-4bd7-8668-cbcf17415bd4"
+ "WESTCENTRALUS:20220401T190023Z:9aff95f1-42fb-4cca-8a16-303b776d87c0"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:37 GMT"
+ "Fri, 01 Apr 2022 19:00:22 GMT"
],
"Expires": [
"-1"
@@ -612,13 +612,13 @@
],
"Names": {
"": [
- "ps823",
- "ps7670",
- "ps9399",
- "ps7167"
+ "ps3597",
+ "ps5714",
+ "ps4679",
+ "ps3476"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json
index d51e2db2c46f..731f43b0ec86 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "612e2f3f-282a-44db-9e67-0be81696ca39"
+ "661586c7-2387-4b29-b4cf-d5b3b3bc1fd2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,22 +33,22 @@
"nosniff"
],
"x-ms-request-id": [
- "bed14349-9d69-42b9-86be-e3cb51115ea1"
+ "b4f80f56-ea94-464f-88ca-5884dc9050f3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11999"
],
"x-ms-correlation-request-id": [
- "a0bc7ff6-6290-4dd4-a91a-083242195c89"
+ "b4f80f56-ea94-464f-88ca-5884dc9050f3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001635Z:a0bc7ff6-6290-4dd4-a91a-083242195c89"
+ "WESTUS:20220401T190258Z:b4f80f56-ea94-464f-88ca-5884dc9050f3"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:35 GMT"
+ "Fri, 01 Apr 2022 19:02:57 GMT"
],
"Content-Length": [
"34"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23d2fb18-ebed-4c50-87d7-3354edec67b4"
+ "d154c4c6-99cb-4a05-a15a-85a32b2f5a4d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,25 +96,25 @@
"nosniff"
],
"x-ms-request-id": [
- "165fc5eb-1683-4764-a45a-e3a5d4f0ded7"
+ "a7060073-ea3f-4b28-a4e5-1ba2d4361236"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11996"
],
"x-ms-correlation-request-id": [
- "aaaaa592-1132-4e74-80b8-0ca5c8238356"
+ "a7060073-ea3f-4b28-a4e5-1ba2d4361236"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001637Z:aaaaa592-1132-4e74-80b8-0ca5c8238356"
+ "WESTUS:20220401T190301Z:a7060073-ea3f-4b28-a4e5-1ba2d4361236"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:37 GMT"
+ "Fri, 01 Apr 2022 19:03:00 GMT"
],
"Content-Length": [
- "1326"
+ "1344"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13771767-1e7e-4cbc-909f-d79198f3ad60"
+ "dfaeb971-f7bd-4573-9965-d28822c34053"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABARw=\""
+ "\"AAAAAAAADN0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6f3e443f-4ad2-44fd-ac7a-f18caf4f9a70"
+ "fff4643d-220f-4ff9-bd47-8f22f049c837"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e79a071b-a59b-4b9f-96d4-5aca6e561e8f"
+ "fff4643d-220f-4ff9-bd47-8f22f049c837"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001635Z:e79a071b-a59b-4b9f-96d4-5aca6e561e8f"
+ "WESTUS:20220401T190259Z:fff4643d-220f-4ff9-bd47-8f22f049c837"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:35 GMT"
+ "Fri, 01 Apr 2022 19:02:59 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8107\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1202\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13771767-1e7e-4cbc-909f-d79198f3ad60"
+ "dfaeb971-f7bd-4573-9965-d28822c34053"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABARw=\""
+ "\"AAAAAAAADN0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,25 +234,25 @@
"nosniff"
],
"x-ms-request-id": [
- "39483f9a-97e8-4bd7-8634-9c9cb11382fb"
+ "d3e00d80-3ace-46c4-9b2b-6990fa63843f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11998"
],
"x-ms-correlation-request-id": [
- "6204ae86-c785-4ae6-8357-670e4e9da9d8"
+ "d3e00d80-3ace-46c4-9b2b-6990fa63843f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001635Z:6204ae86-c785-4ae6-8357-670e4e9da9d8"
+ "WESTUS:20220401T190259Z:d3e00d80-3ace-46c4-9b2b-6990fa63843f"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:35 GMT"
+ "Fri, 01 Apr 2022 19:02:59 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8107\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1202\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1421bd4-b7c6-4158-8e59-e00e33426e10"
+ "f8adafd4-bab6-4c6b-bbe5-707c15e3bad2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,22 +297,22 @@
"nosniff"
],
"x-ms-request-id": [
- "d7f8fff0-fdfb-4d57-b748-c06223d2ec8d"
+ "d01acca8-5ad6-4d64-931b-8897efe87f87"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11993"
],
"x-ms-correlation-request-id": [
- "303453fe-55f3-4fdd-b445-e81be0d86274"
+ "d01acca8-5ad6-4d64-931b-8897efe87f87"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001638Z:303453fe-55f3-4fdd-b445-e81be0d86274"
+ "WESTUS:20220401T190301Z:d01acca8-5ad6-4d64-931b-8897efe87f87"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:38 GMT"
+ "Fri, 01 Apr 2022 19:03:01 GMT"
],
"Content-Length": [
"87"
@@ -328,28 +328,28 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps2237\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps360\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f5d9bd6-87b0-4858-b7d2-92adab088810"
+ "4c7f58bf-290a-4218-875b-96552a3aaab4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "676"
+ "675"
]
},
"ResponseHeaders": {
@@ -360,7 +360,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABASA=\""
+ "\"AAAAAAAADOE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -369,7 +369,7 @@
"nosniff"
],
"x-ms-request-id": [
- "62d898db-3494-48c3-aa44-682ed07ff12b"
+ "fdedd25b-5d0e-4acf-ad17-abfd07d950d9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -378,16 +378,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "9dd01419-34a4-432c-bf5b-f2f8a6d65875"
+ "fdedd25b-5d0e-4acf-ad17-abfd07d950d9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001636Z:9dd01419-34a4-432c-bf5b-f2f8a6d65875"
+ "WESTUS:20220401T190300Z:fdedd25b-5d0e-4acf-ad17-abfd07d950d9"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:36 GMT"
+ "Fri, 01 Apr 2022 19:02:59 GMT"
],
"Content-Length": [
- "1170"
+ "1187"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,17 +396,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps2237\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps360\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6460\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4230\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c4546ec-b6f0-45ad-ba82-1ae0b40bd954"
+ "913766f3-8493-45e4-a026-8e338c5379b4"
],
"If-Match": [
"*"
@@ -415,10 +415,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -435,7 +435,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABASM=\""
+ "\"AAAAAAAADOQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d8d1bb8a-e483-4d10-b803-fef900283f13"
+ "e008d917-9fc6-48c1-bfa5-03be5421ecdc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -453,16 +453,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "ba2b2cd2-644f-44d6-9eeb-affb2f325e8d"
+ "e008d917-9fc6-48c1-bfa5-03be5421ecdc"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001637Z:ba2b2cd2-644f-44d6-9eeb-affb2f325e8d"
+ "WESTUS:20220401T190300Z:e008d917-9fc6-48c1-bfa5-03be5421ecdc"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:36 GMT"
+ "Fri, 01 Apr 2022 19:03:00 GMT"
],
"Content-Length": [
- "1170"
+ "1188"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,26 +471,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c4546ec-b6f0-45ad-ba82-1ae0b40bd954"
+ "913766f3-8493-45e4-a026-8e338c5379b4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,7 +501,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABASM=\""
+ "\"AAAAAAAADOQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -510,25 +510,25 @@
"nosniff"
],
"x-ms-request-id": [
- "69b4bffa-7bea-4b23-a5d7-779aea6d5911"
+ "fcbe19a5-f64b-41df-be9d-0441f4d3fafe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11997"
],
"x-ms-correlation-request-id": [
- "686967f0-a93c-4c3a-957e-236fe524e6aa"
+ "fcbe19a5-f64b-41df-be9d-0441f4d3fafe"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001637Z:686967f0-a93c-4c3a-957e-236fe524e6aa"
+ "WESTUS:20220401T190300Z:fcbe19a5-f64b-41df-be9d-0441f4d3fafe"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:37 GMT"
+ "Fri, 01 Apr 2022 19:03:00 GMT"
],
"Content-Length": [
- "1170"
+ "1188"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,26 +537,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca4c068f-1cb8-4fb4-ba9e-ff0705a3cc7f"
+ "0e2efca2-b465-4a29-9b33-a14736c09422"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -567,7 +567,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABASM=\""
+ "\"AAAAAAAADOQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -576,25 +576,25 @@
"nosniff"
],
"x-ms-request-id": [
- "df3f0c07-cf44-4f9e-a2f3-c7c2130b35e7"
+ "be37357f-746f-406f-9d5b-7e7758a0a391"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11995"
],
"x-ms-correlation-request-id": [
- "8554f986-9643-4545-b20a-85ff43ccc60a"
+ "be37357f-746f-406f-9d5b-7e7758a0a391"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001637Z:8554f986-9643-4545-b20a-85ff43ccc60a"
+ "WESTUS:20220401T190301Z:be37357f-746f-406f-9d5b-7e7758a0a391"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:37 GMT"
+ "Fri, 01 Apr 2022 19:03:00 GMT"
],
"Content-Length": [
- "1170"
+ "1188"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -603,26 +603,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps9632\",\r\n \"properties\": {\r\n \"title\": \"ps7669\",\r\n \"description\": \"ps6460\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps516\",\r\n \"properties\": {\r\n \"title\": \"ps6518\",\r\n \"description\": \"ps4230\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3,\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7126dcfe-6d63-4084-a649-a6948bc21029"
+ "b2dcccde-3ce4-42ed-80f6-27d6029c99ab"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -639,22 +639,22 @@
"nosniff"
],
"x-ms-request-id": [
- "c6adfc8d-a090-4bd2-91bd-8071a1d4f7c0"
+ "37c93ff6-e3ed-477f-9419-4d7d0ed361bf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11994"
],
"x-ms-correlation-request-id": [
- "ff059909-421d-4c7a-ad70-0fd134042ecc"
+ "37c93ff6-e3ed-477f-9419-4d7d0ed361bf"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001638Z:ff059909-421d-4c7a-ad70-0fd134042ecc"
+ "WESTUS:20220401T190301Z:37c93ff6-e3ed-477f-9419-4d7d0ed361bf"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:38 GMT"
+ "Fri, 01 Apr 2022 19:03:01 GMT"
],
"Content-Length": [
"83"
@@ -670,13 +670,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/backends/ps516?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9iYWNrZW5kcy9wczUxNj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fe000a9-d4e0-4bcf-8837-bf47a4f85861"
+ "86c53582-818e-4572-b453-81466b25862d"
],
"If-Match": [
"*"
@@ -685,10 +685,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -705,22 +705,22 @@
"nosniff"
],
"x-ms-request-id": [
- "827aff39-d11d-4ea2-a9fb-5235fca6cee1"
+ "e6023673-4366-485f-94b8-3a0d949f5c7e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "ff0f2b4d-f061-48f5-b2d9-1839a59fd362"
+ "e6023673-4366-485f-94b8-3a0d949f5c7e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001638Z:ff0f2b4d-f061-48f5-b2d9-1839a59fd362"
+ "WESTUS:20220401T190301Z:e6023673-4366-485f-94b8-3a0d949f5c7e"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:38 GMT"
+ "Fri, 01 Apr 2022 19:03:01 GMT"
],
"Expires": [
"-1"
@@ -733,13 +733,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1202?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMjAyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e0d3207-a3f3-4c46-85cd-bbaf246846de"
+ "c410299b-74b0-4f20-bbd7-ff8560ad5818"
],
"If-Match": [
"*"
@@ -748,10 +748,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -768,22 +768,22 @@
"nosniff"
],
"x-ms-request-id": [
- "a64f911b-3424-4978-8982-7ff3a4967106"
+ "ed4cc502-386a-4f1b-b916-74d40bd27874"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "55cb721c-cbf6-446d-876b-7e8166128288"
+ "ed4cc502-386a-4f1b-b916-74d40bd27874"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001638Z:55cb721c-cbf6-446d-876b-7e8166128288"
+ "WESTUS:20220401T190301Z:ed4cc502-386a-4f1b-b916-74d40bd27874"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:38 GMT"
+ "Fri, 01 Apr 2022 19:03:01 GMT"
],
"Expires": [
"-1"
@@ -798,14 +798,14 @@
],
"Names": {
"": [
- "ps8107",
- "ps9632",
- "ps7669",
- "ps2237",
- "ps6460"
+ "ps1202",
+ "ps516",
+ "ps6518",
+ "ps360",
+ "ps4230"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json
index fd3fff92a2e3..96f0fbff5f13 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77b51043-7d4f-48f0-b245-22947366a1d1"
+ "d9343993-7429-46fb-b1c5-521bc3553524"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2f27289d-6a78-43ab-8513-cdcd8b5c737a"
+ "c683c387-a4e7-4156-8d59-bfdb57baf059"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,13 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "dcf80df2-c8ec-4403-b562-af6612a36bb2"
+ "c683c387-a4e7-4156-8d59-bfdb57baf059"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213225Z:dcf80df2-c8ec-4403-b562-af6612a36bb2"
+ "WESTCENTRALUS:20220401T185710Z:c683c387-a4e7-4156-8d59-bfdb57baf059"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:25 GMT"
+ "Fri, 01 Apr 2022 18:57:09 GMT"
],
"Content-Length": [
"34"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0033344d-8390-4af4-8d44-a6aeaa4a0e1c"
+ "e737c3aa-f642-48ca-86dd-49af02511484"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c80442be-740f-4faa-b7ee-6a958860509b"
+ "0096300b-739d-448f-a4c7-ecc04def422d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "9b8346e1-aa2d-491d-bc67-e5f795d3ac44"
+ "0096300b-739d-448f-a4c7-ecc04def422d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213227Z:9b8346e1-aa2d-491d-bc67-e5f795d3ac44"
+ "WESTCENTRALUS:20220401T185715Z:0096300b-739d-448f-a4c7-ecc04def422d"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:27 GMT"
+ "Fri, 01 Apr 2022 18:57:14 GMT"
],
"Content-Length": [
- "476"
+ "486"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db9c77ab-c19a-4363-99f0-604afab790f9"
+ "8c51bb00-47f0-4b8c-92e6-3d4d578c7e7c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAsA=\""
+ "\"AAAAAAAACwY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,25 +168,25 @@
"nosniff"
],
"x-ms-request-id": [
- "574d5e23-e07c-45ee-9385-423416740bc6"
+ "4b395808-c338-4f8c-beca-93cb51ec7dc3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "ef31cae5-9edf-45cd-a3ee-24b87e8cc645"
+ "4b395808-c338-4f8c-beca-93cb51ec7dc3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213226Z:ef31cae5-9edf-45cd-a3ee-24b87e8cc645"
+ "WESTCENTRALUS:20220401T185712Z:4b395808-c338-4f8c-beca-93cb51ec7dc3"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:26 GMT"
+ "Fri, 01 Apr 2022 18:57:12 GMT"
],
"Content-Length": [
- "396"
+ "406"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "422e0b22-7f65-4da8-a032-bd2fb792bedb"
+ "8d9b9132-4c66-4743-9e17-fdec3c51537d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAsA=\""
+ "\"AAAAAAAACwY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,7 +234,7 @@
"nosniff"
],
"x-ms-request-id": [
- "159ad87a-4264-46f5-ba4a-583bd5bc10c1"
+ "d510a6a5-830b-4e49-b5e2-9114799707df"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "d6c3a5e0-2f08-477c-ae06-a62a3c1b68a3"
+ "d510a6a5-830b-4e49-b5e2-9114799707df"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213226Z:d6c3a5e0-2f08-477c-ae06-a62a3c1b68a3"
+ "WESTCENTRALUS:20220401T185713Z:d510a6a5-830b-4e49-b5e2-9114799707df"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:26 GMT"
+ "Fri, 01 Apr 2022 18:57:12 GMT"
],
"Content-Length": [
- "396"
+ "406"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4127f2a3-3e55-433a-8bab-399f228726e7"
+ "ff539665-3daa-48a1-b462-ad66ce07af60"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,7 +291,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAsA=\""
+ "\"AAAAAAAACwY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -300,7 +300,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f2529738-9f37-4702-ad11-9f53d9226792"
+ "5823220d-61b0-4275-8dfd-6c1366853e9e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "66f657e9-3602-4630-bb58-93ce3c86534b"
+ "5823220d-61b0-4275-8dfd-6c1366853e9e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213226Z:66f657e9-3602-4630-bb58-93ce3c86534b"
+ "WESTCENTRALUS:20220401T185713Z:5823220d-61b0-4275-8dfd-6c1366853e9e"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:26 GMT"
+ "Fri, 01 Apr 2022 18:57:12 GMT"
],
"Content-Length": [
- "396"
+ "406"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps8504\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4958\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdc3eeb3-1a99-405c-a7df-67eaf92bc095"
+ "da76f34d-5679-4433-a951-2479df68de27"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAsQ=\""
+ "\"AAAAAAAACwo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7ade4642-d9b8-4ca9-85d7-8cdbafab895d"
+ "6702061f-90a9-4a4e-9c3c-96328327ad9f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "915a0613-be78-48e3-8478-0a212542ab65"
+ "6702061f-90a9-4a4e-9c3c-96328327ad9f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213227Z:915a0613-be78-48e3-8478-0a212542ab65"
+ "WESTCENTRALUS:20220401T185714Z:6702061f-90a9-4a4e-9c3c-96328327ad9f"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:27 GMT"
+ "Fri, 01 Apr 2022 18:57:13 GMT"
],
"Content-Length": [
- "396"
+ "406"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4dfc3ae3-5e19-453a-bb0e-9029c4fa49f7"
+ "f9ccc52b-a1e9-4c93-b18e-fabe72d76b8f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -429,7 +429,7 @@
"nosniff"
],
"x-ms-request-id": [
- "574fc167-a882-44b5-9e00-dcdd51285ddf"
+ "9d1756ed-36c1-441a-9346-a8e0780a0f29"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,13 +438,13 @@
"11994"
],
"x-ms-correlation-request-id": [
- "2d868a91-c999-4612-b17c-83a532f796e7"
+ "9d1756ed-36c1-441a-9346-a8e0780a0f29"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213227Z:2d868a91-c999-4612-b17c-83a532f796e7"
+ "WESTCENTRALUS:20220401T185715Z:9d1756ed-36c1-441a-9346-a8e0780a0f29"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:27 GMT"
+ "Fri, 01 Apr 2022 18:57:14 GMT"
],
"Content-Length": [
"81"
@@ -460,13 +460,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdc3eeb3-1a99-405c-a7df-67eaf92bc095"
+ "da76f34d-5679-4433-a951-2479df68de27"
],
"If-Match": [
"*"
@@ -475,10 +475,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -495,7 +495,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAsQ=\""
+ "\"AAAAAAAACwo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -504,25 +504,25 @@
"nosniff"
],
"x-ms-request-id": [
- "c857fa6d-dac2-47e6-a680-fdef3653760d"
+ "be6b4ed5-7316-4aca-ba60-0193fa047b6a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "afaf7a17-6fea-4086-8dc2-1ce22ff74041"
+ "be6b4ed5-7316-4aca-ba60-0193fa047b6a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213226Z:afaf7a17-6fea-4086-8dc2-1ce22ff74041"
+ "WESTCENTRALUS:20220401T185714Z:be6b4ed5-7316-4aca-ba60-0193fa047b6a"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:26 GMT"
+ "Fri, 01 Apr 2022 18:57:13 GMT"
],
"Content-Length": [
- "396"
+ "406"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -531,17 +531,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"useFromLocation\": \"default\",\r\n \"description\": \"ps4997\",\r\n \"connectionString\": \"{{62474b08217d200d902d7dbe}}\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/caches/default?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jYWNoZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ecfcb64-c202-42d3-818e-2f5bd22b0db0"
+ "442f1e5f-f99b-422e-9f58-9f21a71dc026"
],
"If-Match": [
"*"
@@ -550,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -570,7 +570,7 @@
"nosniff"
],
"x-ms-request-id": [
- "408ddc8e-0535-4112-a4b3-3b6fe7eef0dc"
+ "6414b0bc-0ac6-4cd3-8e09-f33fd930f9f0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,13 +579,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "7d61a6a5-27fe-4291-9f12-b690f7e19764"
+ "6414b0bc-0ac6-4cd3-8e09-f33fd930f9f0"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213227Z:7d61a6a5-27fe-4291-9f12-b690f7e19764"
+ "WESTCENTRALUS:20220401T185715Z:6414b0bc-0ac6-4cd3-8e09-f33fd930f9f0"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:27 GMT"
+ "Fri, 01 Apr 2022 18:57:14 GMT"
],
"Expires": [
"-1"
@@ -598,22 +598,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8ad0136-d128-4b98-851b-186194b97275"
+ "329a1ab2-6c9f-4b01-bf82-e556b77cce15"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -630,7 +630,7 @@
"nosniff"
],
"x-ms-request-id": [
- "063f9a3f-265d-43ad-8005-a6dc6b2fc3ef"
+ "21d2fecb-b393-4ec4-a73e-1c31272167f4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -639,16 +639,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "3d750f37-9310-4e5f-9cb0-c945cfa912a9"
+ "21d2fecb-b393-4ec4-a73e-1c31272167f4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213227Z:3d750f37-9310-4e5f-9cb0-c945cfa912a9"
+ "WESTCENTRALUS:20220401T185715Z:21d2fecb-b393-4ec4-a73e-1c31272167f4"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:27 GMT"
+ "Fri, 01 Apr 2022 18:57:15 GMT"
],
"Content-Length": [
- "511"
+ "521"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -657,17 +657,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/60f0a96aa2ca601290f0cc5f\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"60f0a96aa2ca601290f0cc5f\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-60f0a96aa2ca601290f0cc60\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/62474b08217d200d902d7dbe\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"62474b08217d200d902d7dbe\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-62474b08217d200d902d7dbf\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/60f0a96aa2ca601290f0cc5f?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzYwZjBhOTZhYTJjYTYwMTI5MGYwY2M1Zj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/62474b08217d200d902d7dbe?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy82MjQ3NGIwODIxN2QyMDBkOTAyZDdkYmU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2e2170d-b05f-4a6c-a89b-94495f0bc4de"
+ "ccb64310-7edd-4023-b3b1-6423a2495348"
],
"If-Match": [
"*"
@@ -676,10 +676,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -696,7 +696,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8a5d1595-0835-4b95-9012-58c390fa66fd"
+ "b3becfb4-8f22-4dea-afb2-ac3fd18870ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -705,13 +705,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "beba4596-eb94-4fb7-b5e4-7f2d68de7464"
+ "b3becfb4-8f22-4dea-afb2-ac3fd18870ab"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T213228Z:beba4596-eb94-4fb7-b5e4-7f2d68de7464"
+ "WESTCENTRALUS:20220401T185718Z:b3becfb4-8f22-4dea-afb2-ac3fd18870ab"
],
"Date": [
- "Thu, 15 Jul 2021 21:32:27 GMT"
+ "Fri, 01 Apr 2022 18:57:17 GMT"
],
"Expires": [
"-1"
@@ -726,11 +726,11 @@
],
"Names": {
"": [
- "ps8504",
- "ps4058"
+ "ps4958",
+ "ps4997"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json
index 62c63825c55f..843493b03676 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b51c01e0-8a9c-4e35-85e2-f0d31061073f"
+ "df490d76-f055-4c7d-8127-8f78ebc15ad5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9de07bcc-4c79-4b8d-80ec-7d483a5c377b"
+ "50cc40f7-3676-4443-861f-e84a8766bddd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,13 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "6e248edb-9600-481a-aa42-f89d3ee08d01"
+ "50cc40f7-3676-4443-861f-e84a8766bddd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183514Z:6e248edb-9600-481a-aa42-f89d3ee08d01"
+ "WESTUS:20220401T214947Z:50cc40f7-3676-4443-861f-e84a8766bddd"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:14 GMT"
+ "Fri, 01 Apr 2022 21:49:47 GMT"
],
"Content-Length": [
"34"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9519c7c7-6ea4-439c-85da-a7fef6d12ac0"
+ "5c2214d6-f2a3-438d-9c3c-9fe3ffdb3d49"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"nosniff"
],
"x-ms-request-id": [
- "25fb10e9-9fdd-4dc8-ad20-b5bef9907650"
+ "6f99d4d8-ed73-4c19-8c9f-0b8bf6c83f17"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "433e44a2-893b-46df-a005-df07dab00331"
+ "6f99d4d8-ed73-4c19-8c9f-0b8bf6c83f17"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183518Z:433e44a2-893b-46df-a005-df07dab00331"
+ "WESTUS:20220401T215008Z:6f99d4d8-ed73-4c19-8c9f-0b8bf6c83f17"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:18 GMT"
+ "Fri, 01 Apr 2022 21:50:07 GMT"
],
"Content-Length": [
- "1350"
+ "1369"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:15.7518822Z\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:50:01.740896Z\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c85f219-00dc-4acf-88c1-891ad818436d"
+ "af3c2a26-5400-424c-adc7-42ae69605469"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiI=\""
+ "\"AAAAAAAADfk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8d467489-a53b-4f42-bcac-58bb6945f40d"
+ "2e3fcb6c-f467-43d8-910b-3c19705e0472"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "224b91a8-01d6-4e64-8f17-a4693ad9d146"
+ "2e3fcb6c-f467-43d8-910b-3c19705e0472"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183515Z:224b91a8-01d6-4e64-8f17-a4693ad9d146"
+ "WESTUS:20220401T215000Z:2e3fcb6c-f467-43d8-910b-3c19705e0472"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:15 GMT"
+ "Fri, 01 Apr 2022 21:49:59 GMT"
],
"Content-Length": [
- "726"
+ "736"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:14.4481249Z\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:49:49.8302462Z\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c85f219-00dc-4acf-88c1-891ad818436d"
+ "af3c2a26-5400-424c-adc7-42ae69605469"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiI=\""
+ "\"AAAAAAAADfk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,7 +234,7 @@
"nosniff"
],
"x-ms-request-id": [
- "11ca7d1e-c172-445f-8259-0eea7e8272c9"
+ "64227301-b478-4a96-8d89-0ffa5583a87e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +243,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "b93ff64f-05f3-44fd-8037-033d953fb17d"
+ "64227301-b478-4a96-8d89-0ffa5583a87e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183515Z:b93ff64f-05f3-44fd-8037-033d953fb17d"
+ "WESTUS:20220401T215000Z:64227301-b478-4a96-8d89-0ffa5583a87e"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:15 GMT"
+ "Fri, 01 Apr 2022 21:49:59 GMT"
],
"Content-Length": [
- "726"
+ "736"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:14.4481249Z\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:49:49.8302462Z\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57cf7d89-40b6-482d-9328-77ebc4f9547f"
+ "031b86f1-17f7-40f9-ab81-1797ce21e0e5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,7 +291,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiI=\""
+ "\"AAAAAAAADfk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -300,7 +300,7 @@
"nosniff"
],
"x-ms-request-id": [
- "582b564b-cc45-4025-85c0-594f6f77639b"
+ "c6fce5f0-29c9-4b06-b1e2-e2df0bb5068a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +309,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "193315ce-2c68-4b5f-9c95-1fd92de4b684"
+ "c6fce5f0-29c9-4b06-b1e2-e2df0bb5068a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183515Z:193315ce-2c68-4b5f-9c95-1fd92de4b684"
+ "WESTUS:20220401T215001Z:c6fce5f0-29c9-4b06-b1e2-e2df0bb5068a"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:15 GMT"
+ "Fri, 01 Apr 2022 21:50:00 GMT"
],
"Content-Length": [
- "726"
+ "736"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:14.4481249Z\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:49:49.8302462Z\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57cf7d89-40b6-482d-9328-77ebc4f9547f"
+ "031b86f1-17f7-40f9-ab81-1797ce21e0e5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiU=\""
+ "\"AAAAAAAADfw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7f12495a-ed63-4a21-a17b-cf397c4107ae"
+ "397ef56b-a348-4906-8db4-32d64838bf67"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "dd635754-97fa-4166-9c43-040b21dcb545"
+ "397ef56b-a348-4906-8db4-32d64838bf67"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183516Z:dd635754-97fa-4166-9c43-040b21dcb545"
+ "WESTUS:20220401T215004Z:397ef56b-a348-4906-8db4-32d64838bf67"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:16 GMT"
+ "Fri, 01 Apr 2022 21:50:03 GMT"
],
"Content-Length": [
- "726"
+ "735"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:15.7518822Z\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"cert1234\",\r\n \"properties\": {\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:50:01.740896Z\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8330a4a-992b-4a2d-a130-77820404002a"
+ "957b6409-4795-4e76-ada3-f7f680528c84"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -429,7 +429,7 @@
"nosniff"
],
"x-ms-request-id": [
- "07c1eef5-4559-4e46-b837-949e17678cb4"
+ "833d43c5-1b2c-4187-80d2-b6293985f6ce"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,13 +438,13 @@
"11989"
],
"x-ms-correlation-request-id": [
- "f6c4f250-533d-4c32-8970-f7576aeefceb"
+ "833d43c5-1b2c-4187-80d2-b6293985f6ce"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183519Z:f6c4f250-533d-4c32-8970-f7576aeefceb"
+ "WESTUS:20220401T215016Z:833d43c5-1b2c-4187-80d2-b6293985f6ce"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:19 GMT"
+ "Fri, 01 Apr 2022 21:50:15 GMT"
],
"Content-Length": [
"87"
@@ -460,22 +460,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234/refreshSecret?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzNC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234/refreshSecret?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57cf7d89-40b6-482d-9328-77ebc4f9547f"
+ "031b86f1-17f7-40f9-ab81-1797ce21e0e5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -486,7 +486,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiU=\""
+ "\"AAAAAAAADfw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -495,7 +495,7 @@
"nosniff"
],
"x-ms-request-id": [
- "94bb7bf5-74a0-46a9-830a-da6badb7b20e"
+ "93d6b51e-ea8e-4cc9-9a61-88f2b0a66806"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +504,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "b35a76ff-a4f3-4552-b957-7b67b03f24c4"
+ "93d6b51e-ea8e-4cc9-9a61-88f2b0a66806"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183516Z:b35a76ff-a4f3-4552-b957-7b67b03f24c4"
+ "WESTUS:20220401T215003Z:93d6b51e-ea8e-4cc9-9a61-88f2b0a66806"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:16 GMT"
+ "Fri, 01 Apr 2022 21:50:03 GMT"
],
"Content-Length": [
- "371"
+ "370"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -522,26 +522,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/certificates/cert1234\",\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:35:15.7518822Z\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/certificates/cert1234\",\r\n \"subject\": \"CN=contoso3.com\",\r\n \"thumbprint\": \"570CB519E50DDE9D7A3D75ECE9F13CCBCC3A4E02\",\r\n \"expirationDate\": \"2022-07-09T22:33:23Z\",\r\n \"hasPrivateKey\": true,\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:50:01.740896Z\"\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e785b165-602d-4498-a5e8-38c53b491051"
+ "ea63b2f6-121f-4cc6-8440-3b994a96a5c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -558,7 +558,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACio=\""
+ "\"AAAAAAAADgI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -567,7 +567,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c42e662c-5de6-4c76-a071-24dc8cc7f404"
+ "cb9d8176-543a-4976-b4a0-64ba1f6db1d2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -576,16 +576,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "7d3ae266-4614-4a5e-b0d5-e4f2bc12ae71"
+ "cb9d8176-543a-4976-b4a0-64ba1f6db1d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183517Z:7d3ae266-4614-4a5e-b0d5-e4f2bc12ae71"
+ "WESTUS:20220401T215004Z:cb9d8176-543a-4976-b4a0-64ba1f6db1d2"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:17 GMT"
+ "Fri, 01 Apr 2022 21:50:04 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -594,17 +594,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b70c32e-51a9-487d-aba8-5b72fe91f002"
+ "294d1b93-d92c-4a30-a04e-99b006c0bb97"
],
"If-Match": [
"*"
@@ -613,10 +613,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -633,7 +633,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACi0=\""
+ "\"AAAAAAAADgU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -642,7 +642,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ce8218fd-2104-489c-89ac-64c97f9117d2"
+ "f32e0bf2-ecff-4fc2-96a7-3512ed2d2fa9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -651,16 +651,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "9de86699-2c0f-4265-a98c-47eb6c7ba923"
+ "f32e0bf2-ecff-4fc2-96a7-3512ed2d2fa9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183518Z:9de86699-2c0f-4265-a98c-47eb6c7ba923"
+ "WESTUS:20220401T215007Z:f32e0bf2-ecff-4fc2-96a7-3512ed2d2fa9"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:18 GMT"
+ "Fri, 01 Apr 2022 21:50:06 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -669,26 +669,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e785b165-602d-4498-a5e8-38c53b491051"
+ "ea63b2f6-121f-4cc6-8440-3b994a96a5c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -699,7 +699,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACio=\""
+ "\"AAAAAAAADgI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -708,7 +708,7 @@
"nosniff"
],
"x-ms-request-id": [
- "13712fd1-a67d-451c-959f-8d933d343b75"
+ "55bdc5a1-7cb7-408e-a30a-730c8708ca8f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -717,16 +717,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "7b63d1b3-2cf5-46fb-89a0-43be89b99d25"
+ "55bdc5a1-7cb7-408e-a30a-730c8708ca8f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183517Z:7b63d1b3-2cf5-46fb-89a0-43be89b99d25"
+ "WESTUS:20220401T215005Z:55bdc5a1-7cb7-408e-a30a-730c8708ca8f"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:17 GMT"
+ "Fri, 01 Apr 2022 21:50:04 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -735,26 +735,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "609f52a9-7747-4b83-9853-ebb1d5827375"
+ "c36e9a04-8b46-4ff2-8ffb-19faed8aa015"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -765,7 +765,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACio=\""
+ "\"AAAAAAAADgI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -774,7 +774,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2385daa7-29cd-47a5-9317-20904a83af14"
+ "f1bbd8f7-a381-4596-9c6b-ea6472ab58b1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -783,16 +783,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "a04ac5fb-e307-4ed0-86b5-97eb429a5174"
+ "f1bbd8f7-a381-4596-9c6b-ea6472ab58b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183517Z:a04ac5fb-e307-4ed0-86b5-97eb429a5174"
+ "WESTUS:20220401T215005Z:f1bbd8f7-a381-4596-9c6b-ea6472ab58b1"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:17 GMT"
+ "Fri, 01 Apr 2022 21:50:04 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -801,26 +801,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9460e9c-bcd9-4158-bcfe-6a7fb936e614"
+ "368023be-0e5c-468a-b4e2-3d73daae7201"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -831,7 +831,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACio=\""
+ "\"AAAAAAAADgI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -840,7 +840,7 @@
"nosniff"
],
"x-ms-request-id": [
- "26639af2-9d06-4be5-b60d-aeb5a149fcf9"
+ "cda4fd5d-b289-4e87-880d-43a853b8c2d1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -849,16 +849,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "87c513fa-c797-4fae-ada9-0bfb5cce17ef"
+ "cda4fd5d-b289-4e87-880d-43a853b8c2d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183517Z:87c513fa-c797-4fae-ada9-0bfb5cce17ef"
+ "WESTUS:20220401T215005Z:cda4fd5d-b289-4e87-880d-43a853b8c2d1"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:17 GMT"
+ "Fri, 01 Apr 2022 21:50:05 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -867,26 +867,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b70c32e-51a9-487d-aba8-5b72fe91f002"
+ "294d1b93-d92c-4a30-a04e-99b006c0bb97"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -897,7 +897,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACi0=\""
+ "\"AAAAAAAADgU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -906,7 +906,7 @@
"nosniff"
],
"x-ms-request-id": [
- "1bf85ea5-86d9-49d0-a6bd-9925b220c56c"
+ "46b21745-63aa-4963-bffb-1ffb395f684b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -915,16 +915,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "820c9c3b-5b48-4d7e-a376-40a278afe8a6"
+ "46b21745-63aa-4963-bffb-1ffb395f684b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183518Z:820c9c3b-5b48-4d7e-a376-40a278afe8a6"
+ "WESTUS:20220401T215007Z:46b21745-63aa-4963-bffb-1ffb395f684b"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:18 GMT"
+ "Fri, 01 Apr 2022 21:50:06 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -933,26 +933,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps9003\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps1172\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b29c9961-b5d6-4998-9888-178961afa9ce"
+ "8c784432-05bb-4216-98a1-4345c58e47d5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -969,7 +969,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c1825104-dcf6-4622-9344-5815a8859b7d"
+ "2ec2c2dc-a080-4f45-a8f8-f8b36f6df31a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -978,13 +978,13 @@
"11990"
],
"x-ms-correlation-request-id": [
- "c66ba0bd-cea3-4072-9229-98a3bd8a06dc"
+ "2ec2c2dc-a080-4f45-a8f8-f8b36f6df31a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183519Z:c66ba0bd-cea3-4072-9229-98a3bd8a06dc"
+ "WESTUS:20220401T215016Z:2ec2c2dc-a080-4f45-a8f8-f8b36f6df31a"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:19 GMT"
+ "Fri, 01 Apr 2022 21:50:15 GMT"
],
"Content-Length": [
"87"
@@ -1000,13 +1000,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps1172?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMxMTcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5755fea9-9f94-4ad6-8642-4415b471177b"
+ "b1808a4a-14a3-470b-9ef2-21562b11b703"
],
"If-Match": [
"*"
@@ -1015,10 +1015,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1035,7 +1035,7 @@
"nosniff"
],
"x-ms-request-id": [
- "16df70b8-2acf-4f9e-acf1-4b436150186c"
+ "356a45dc-02c0-420d-8981-9dc73e338919"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1044,13 +1044,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "fc89cf46-6d7f-40db-9fbb-c992da84b9d7"
+ "356a45dc-02c0-420d-8981-9dc73e338919"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183519Z:fc89cf46-6d7f-40db-9fbb-c992da84b9d7"
+ "WESTUS:20220401T215012Z:356a45dc-02c0-420d-8981-9dc73e338919"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:19 GMT"
+ "Fri, 01 Apr 2022 21:50:11 GMT"
],
"Expires": [
"-1"
@@ -1063,13 +1063,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/cert1234?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvY2VydDEyMzQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d939a3f4-8cc3-4f32-935b-25a4693fe186"
+ "55ee63f8-469d-4e8c-ac48-a335b936b430"
],
"If-Match": [
"*"
@@ -1078,10 +1078,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1098,7 +1098,7 @@
"nosniff"
],
"x-ms-request-id": [
- "3a98ebd3-a1e4-4c04-a6e0-c69f8bf1ed7f"
+ "7a6f0703-f794-48f2-9f4c-e2b7cc1a9f0e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1107,13 +1107,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "4687a2bb-43d8-4ea1-af86-d20076d45f8f"
+ "7a6f0703-f794-48f2-9f4c-e2b7cc1a9f0e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183519Z:4687a2bb-43d8-4ea1-af86-d20076d45f8f"
+ "WESTUS:20220401T215015Z:7a6f0703-f794-48f2-9f4c-e2b7cc1a9f0e"
],
"Date": [
- "Wed, 28 Jul 2021 18:35:19 GMT"
+ "Fri, 01 Apr 2022 21:50:14 GMT"
],
"Expires": [
"-1"
@@ -1128,10 +1128,10 @@
],
"Names": {
"": [
- "ps9003"
+ "ps1172"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json
index d43c39afa746..d17ca6e13ece 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60d8b4ff-dcc9-4474-a1a8-550819dee198"
+ "bf39fa82-6773-4700-9a04-1c10bb3564c9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,22 +33,22 @@
"nosniff"
],
"x-ms-request-id": [
- "67bd054d-5bc4-49b6-9b08-5d035209e48d"
+ "b72ec87a-b44b-41e0-89c9-83acffb4c056"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "2bd698c6-c10f-4b74-97f5-7a892febd197"
+ "b72ec87a-b44b-41e0-89c9-83acffb4c056"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001205Z:2bd698c6-c10f-4b74-97f5-7a892febd197"
+ "WESTCENTRALUS:20220401T185850Z:b72ec87a-b44b-41e0-89c9-83acffb4c056"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:04 GMT"
+ "Fri, 01 Apr 2022 18:58:50 GMT"
],
"Content-Length": [
"34"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37818d38-da77-49bd-b254-441d405100c5"
+ "9c3990f6-ee3a-4e17-9121-a332d9f91420"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,22 +96,22 @@
"nosniff"
],
"x-ms-request-id": [
- "5e704c1a-8a50-43a7-93ea-371c1d03eb6b"
+ "77178ade-1a0e-4593-8e42-76823106392d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "00e3b8c0-08f5-4e9f-9b4d-3a78cdfbdc32"
+ "77178ade-1a0e-4593-8e42-76823106392d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001211Z:00e3b8c0-08f5-4e9f-9b4d-3a78cdfbdc32"
+ "WESTCENTRALUS:20220401T185858Z:77178ade-1a0e-4593-8e42-76823106392d"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:11 GMT"
+ "Fri, 01 Apr 2022 18:58:58 GMT"
],
"Content-Length": [
"34"
@@ -127,22 +127,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzOTUzNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9216\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"3172327e-babe-4fef-8c75-a122e19bd0f4\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps6174\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"474edd50-b07f-48ea-b472-f1ec6a3ef92d\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71513fa4-3d61-4e99-9131-0c7c77cccade"
+ "034facc6-c71a-4d60-b4d2-4d0e36d2c9f5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/9c=\""
+ "\"AAAAAAAAC5g=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,25 +168,25 @@
"nosniff"
],
"x-ms-request-id": [
- "e94553aa-8fd4-4df6-b6f6-0a3b7264f698"
+ "2e5a98bb-e296-48c6-9dfe-98749175599e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "3787e93d-4ef0-45fc-84d1-223370713c9a"
+ "2e5a98bb-e296-48c6-9dfe-98749175599e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001209Z:3787e93d-4ef0-45fc-84d1-223370713c9a"
+ "WESTCENTRALUS:20220401T185854Z:2e5a98bb-e296-48c6-9dfe-98749175599e"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:08 GMT"
+ "Fri, 01 Apr 2022 18:58:54 GMT"
],
"Content-Length": [
- "506"
+ "516"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps1953\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9216\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--60ecda58a2ca601290f0cb60}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps9535\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps6174\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--62474b6d217d200d902d7de2}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1953\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9535\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecea08fe-ddd2-4f8a-8dfd-e9404bb1d661"
+ "23e6adee-f34e-468e-b866-b7f483d7384d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +231,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/9o=\""
+ "\"AAAAAAAAC5s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -240,25 +240,25 @@
"nosniff"
],
"x-ms-request-id": [
- "9219dbe4-0d91-4cf8-8e4d-1c35690a80bc"
+ "d575e8ce-f177-4b7f-8567-c33e02184614"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "a6834425-1a94-4418-ae61-a2e48a50339b"
+ "d575e8ce-f177-4b7f-8567-c33e02184614"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001210Z:a6834425-1a94-4418-ae61-a2e48a50339b"
+ "WESTCENTRALUS:20220401T185856Z:d575e8ce-f177-4b7f-8567-c33e02184614"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:10 GMT"
+ "Fri, 01 Apr 2022 18:58:56 GMT"
],
"Content-Length": [
- "1398"
+ "1418"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -267,17 +267,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps1953\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9535\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "acafbca4-7760-4fdc-80eb-68eab857e4ee"
+ "3aa7fbbb-4ffa-4ba2-8025-05d56c5ab4f0"
],
"If-Match": [
"*"
@@ -286,10 +286,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -306,7 +306,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/94=\""
+ "\"AAAAAAAAC58=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -315,25 +315,25 @@
"nosniff"
],
"x-ms-request-id": [
- "0f876b4b-e14c-4301-93fb-39f35e6dcdec"
+ "6d972d95-e1a8-4d7c-ba05-81082e71eed7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "591ef022-53a4-4bae-b917-1a85d4d385ee"
+ "6d972d95-e1a8-4d7c-ba05-81082e71eed7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001211Z:591ef022-53a4-4bae-b917-1a85d4d385ee"
+ "WESTCENTRALUS:20220401T185857Z:6d972d95-e1a8-4d7c-ba05-81082e71eed7"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:10 GMT"
+ "Fri, 01 Apr 2022 18:58:57 GMT"
],
"Content-Length": [
- "1057"
+ "1077"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -342,26 +342,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2746f65d-871e-4a14-8b4f-e17b4a025485"
+ "d4084eb4-b685-49a4-928d-a339062af781"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -372,7 +372,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/94=\""
+ "\"AAAAAAAAC58=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,25 +381,25 @@
"nosniff"
],
"x-ms-request-id": [
- "5278c207-3ba5-4915-9235-c12456de5193"
+ "4532636c-c88b-4593-8f71-1c6a72331127"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-correlation-request-id": [
- "251c9fb9-2532-4b0d-b928-a65dfeea181d"
+ "4532636c-c88b-4593-8f71-1c6a72331127"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001211Z:251c9fb9-2532-4b0d-b928-a65dfeea181d"
+ "WESTCENTRALUS:20220401T185858Z:4532636c-c88b-4593-8f71-1c6a72331127"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:10 GMT"
+ "Fri, 01 Apr 2022 18:58:57 GMT"
],
"Content-Length": [
- "1057"
+ "1077"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -408,26 +408,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f14b08fc-771e-47fa-bbbf-0b8c3f0e555e"
+ "186b49a1-b805-4841-8be5-772224efd96d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -438,7 +438,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/94=\""
+ "\"AAAAAAAAC58=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -447,25 +447,25 @@
"nosniff"
],
"x-ms-request-id": [
- "278036f0-557a-4144-ae76-031a2757adf2"
+ "e645fca1-889b-44ee-91ec-26b2c1beab93"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "232bd8c8-493c-450d-9bd8-66f92585e787"
+ "e645fca1-889b-44ee-91ec-26b2c1beab93"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001211Z:232bd8c8-493c-450d-9bd8-66f92585e787"
+ "WESTCENTRALUS:20220401T185858Z:e645fca1-889b-44ee-91ec-26b2c1beab93"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:11 GMT"
+ "Fri, 01 Apr 2022 18:58:58 GMT"
],
"Content-Length": [
- "1057"
+ "1077"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -474,17 +474,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3196dd68-d5e2-4cf2-a53b-3031d97fe759"
+ "baa1cb03-74b6-45a9-a8e8-73eb86371bbd"
],
"If-Match": [
"*"
@@ -493,10 +493,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -513,7 +513,7 @@
"nosniff"
],
"x-ms-request-id": [
- "60eda374-6173-4410-b53a-f7a9b0c6265f"
+ "dd8d1498-ac44-4c3d-980c-84c7d3610f94"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -522,13 +522,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "265848a9-c2f7-402b-bd25-bef1c86b4cc5"
+ "dd8d1498-ac44-4c3d-980c-84c7d3610f94"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001211Z:265848a9-c2f7-402b-bd25-bef1c86b4cc5"
+ "WESTCENTRALUS:20220401T185858Z:dd8d1498-ac44-4c3d-980c-84c7d3610f94"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:11 GMT"
+ "Fri, 01 Apr 2022 18:58:58 GMT"
],
"Expires": [
"-1"
@@ -541,13 +541,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/diagnostics/applicationinsights?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93987d7a-a298-4375-a288-b842c462ddbf"
+ "f0c3161e-b574-411c-9527-9eac98a04d52"
],
"If-Match": [
"*"
@@ -556,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -576,22 +576,22 @@
"nosniff"
],
"x-ms-request-id": [
- "22128ab5-e175-4113-9082-46758f01ae97"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "68e15843-92e9-45df-8377-e5e90cf95955"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14998"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "eb84a2d8-0aff-4dc5-9f4c-e09779d8c0d2"
+ "68e15843-92e9-45df-8377-e5e90cf95955"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001212Z:eb84a2d8-0aff-4dc5-9f4c-e09779d8c0d2"
+ "WESTCENTRALUS:20220401T185859Z:68e15843-92e9-45df-8377-e5e90cf95955"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:11 GMT"
+ "Fri, 01 Apr 2022 18:58:58 GMT"
],
"Expires": [
"-1"
@@ -601,13 +601,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps9535?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzOTUzNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "24bc1783-1aa3-4b41-9039-5a41167bfed4"
+ "80ae0c6c-57f2-4eb0-abc8-e5ffed0fd875"
],
"If-Match": [
"*"
@@ -616,10 +616,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -636,7 +636,7 @@
"nosniff"
],
"x-ms-request-id": [
- "fbc5604b-5477-4934-87a1-8c3185291379"
+ "93a0eb47-c449-47b4-b991-2c9e8567574e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,13 +645,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "13c06e8b-5f6a-4fb7-89bc-947ee2db51e8"
+ "93a0eb47-c449-47b4-b991-2c9e8567574e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001212Z:13c06e8b-5f6a-4fb7-89bc-947ee2db51e8"
+ "WESTCENTRALUS:20220401T185900Z:93a0eb47-c449-47b4-b991-2c9e8567574e"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:12 GMT"
+ "Fri, 01 Apr 2022 18:58:59 GMT"
],
"Expires": [
"-1"
@@ -664,22 +664,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36418727-24a9-4d08-88f4-b3588850c075"
+ "1c4f021e-6c33-462f-a0df-d7cfd036d14f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -696,22 +696,22 @@
"nosniff"
],
"x-ms-request-id": [
- "f1c999b1-7919-4cdc-aa9c-01e1182532d1"
+ "db0b79b0-4a14-4f0a-a19d-1b5c3aabb1c3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "c3c1af8e-33cb-40a5-bd58-26e3e91656da"
+ "db0b79b0-4a14-4f0a-a19d-1b5c3aabb1c3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001213Z:c3c1af8e-33cb-40a5-bd58-26e3e91656da"
+ "WESTCENTRALUS:20220401T185900Z:db0b79b0-4a14-4f0a-a19d-1b5c3aabb1c3"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:12 GMT"
+ "Fri, 01 Apr 2022 18:58:59 GMT"
],
"Content-Length": [
"34"
@@ -729,11 +729,11 @@
],
"Names": {
"": [
- "ps1953",
- "ps9216"
+ "ps9535",
+ "ps6174"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json
index cfbcd7a19972..40305d7e49be 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5b9a52f-797e-4e36-ab0f-4a837a75313e"
+ "a40e9f6f-e9ef-472b-97eb-537208b57a8b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,22 +33,22 @@
"nosniff"
],
"x-ms-request-id": [
- "34ddd902-6076-493e-9e11-515f39b6462c"
+ "14cf8b9f-e7dc-489d-8b55-58fd99f2a6a6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11996"
],
"x-ms-correlation-request-id": [
- "8f38ec17-a4f4-41fe-b5db-0d0847ae9eb6"
+ "14cf8b9f-e7dc-489d-8b55-58fd99f2a6a6"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205433Z:8f38ec17-a4f4-41fe-b5db-0d0847ae9eb6"
+ "WESTUS:20220401T190034Z:14cf8b9f-e7dc-489d-8b55-58fd99f2a6a6"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:32 GMT"
+ "Fri, 01 Apr 2022 19:00:33 GMT"
],
"Content-Length": [
"34"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1785bd37-3fd6-4686-b1a2-d321b8c8fedf"
+ "a63a32db-3bd4-4e70-840e-1f8f5a78cbe0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,25 +96,25 @@
"nosniff"
],
"x-ms-request-id": [
- "de45988e-0490-443b-bd96-812c02661dac"
+ "2759b538-1138-4b8e-9580-2c49555e58ff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11995"
],
"x-ms-correlation-request-id": [
- "3d4b72ad-9533-4bbf-9b57-dc46c788954e"
+ "2759b538-1138-4b8e-9580-2c49555e58ff"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205435Z:3d4b72ad-9533-4bbf-9b57-dc46c788954e"
+ "WESTUS:20220401T190035Z:2759b538-1138-4b8e-9580-2c49555e58ff"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:34 GMT"
+ "Fri, 01 Apr 2022 19:00:35 GMT"
],
"Content-Length": [
- "572"
+ "583"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,32 +123,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": []\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\r\n \"heartbeat\": []\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95594398-9352-4f97-b424-6799d75da724"
+ "f5b9cb9b-4309-4273-b8f2-2762c26b298c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "201"
+ "202"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"uQUBAAAAAAA=\""
+ "\"LwwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2fff2d2e-fcbb-4f91-9ae3-818f1fc79066"
+ "6ee44145-873e-40c8-b7a7-bf7784620002"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "c981b47b-a008-46ea-ba11-38d214610afc"
+ "6ee44145-873e-40c8-b7a7-bf7784620002"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205434Z:c981b47b-a008-46ea-ba11-38d214610afc"
+ "WESTUS:20220401T190035Z:6ee44145-873e-40c8-b7a7-bf7784620002"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:33 GMT"
+ "Fri, 01 Apr 2022 19:00:35 GMT"
],
"Content-Length": [
- "474"
+ "485"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\r\n \"heartbeat\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd77463d-72f4-4e29-b6bb-a2808e62cbb4"
+ "2e4471b9-844f-4384-80be-ccd7cc5914dc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"uQUBAAAAAAA=\""
+ "\"LwwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,25 +234,25 @@
"nosniff"
],
"x-ms-request-id": [
- "91fc94c8-0b24-4cc1-a99e-306e0dca3d1c"
+ "9b25189b-35ae-49ad-a68b-68cf3c014d1d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11994"
],
"x-ms-correlation-request-id": [
- "1aa68c6a-29c7-4c05-8a71-3a555f32ac46"
+ "9b25189b-35ae-49ad-a68b-68cf3c014d1d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205435Z:1aa68c6a-29c7-4c05-8a71-3a555f32ac46"
+ "WESTUS:20220401T190036Z:9b25189b-35ae-49ad-a68b-68cf3c014d1d"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:34 GMT"
+ "Fri, 01 Apr 2022 19:00:36 GMT"
],
"Content-Length": [
- "472"
+ "483"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\r\n \"heartbeat\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf0d537d-f6d8-4650-a915-1393c0b291f0"
+ "f193a721-82c6-4bff-98d0-96afa0d51e25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,7 +291,7 @@
"no-cache"
],
"ETag": [
- "\"uQUBAAAAAAA=\""
+ "\"LwwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -300,25 +300,25 @@
"nosniff"
],
"x-ms-request-id": [
- "6dcbf57d-7be6-4a9a-81da-fd346460d63d"
+ "1fc9fc74-3ce6-471e-a63d-080f1795c63d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11993"
],
"x-ms-correlation-request-id": [
- "6d3816f4-b7c2-4a88-a17e-981bf9305cf4"
+ "1fc9fc74-3ce6-471e-a63d-080f1795c63d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205435Z:6d3816f4-b7c2-4a88-a17e-981bf9305cf4"
+ "WESTUS:20220401T190036Z:1fc9fc74-3ce6-471e-a63d-080f1795c63d"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:34 GMT"
+ "Fri, 01 Apr 2022 19:00:36 GMT"
],
"Content-Length": [
- "472"
+ "483"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps9171\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps6546\",\r\n \"heartbeat\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf0d537d-f6d8-4650-a915-1393c0b291f0"
+ "f193a721-82c6-4bff-98d0-96afa0d51e25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"ugUBAAAAAAA=\""
+ "\"MAwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,25 +366,25 @@
"nosniff"
],
"x-ms-request-id": [
- "53263619-6b61-49bc-b3e6-318cc81ae3cb"
+ "169afcd1-54d9-40f1-8a29-5114e325248a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11992"
],
"x-ms-correlation-request-id": [
- "8ef45afe-d09d-4eb7-84ab-da75ce30e16f"
+ "169afcd1-54d9-40f1-8a29-5114e325248a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205436Z:8ef45afe-d09d-4eb7-84ab-da75ce30e16f"
+ "WESTUS:20220401T190037Z:169afcd1-54d9-40f1-8a29-5114e325248a"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:35 GMT"
+ "Fri, 01 Apr 2022 19:00:37 GMT"
],
"Content-Length": [
- "472"
+ "483"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps3175\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps4901\",\r\n \"heartbeat\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "166bf726-e2a0-49ae-afae-d0e50f0cce36"
+ "5b5972b8-268e-46dd-8ed2-e4d88e5735c8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,7 +423,7 @@
"no-cache"
],
"ETag": [
- "\"uwUBAAAAAAA=\""
+ "\"MQwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -432,25 +432,25 @@
"nosniff"
],
"x-ms-request-id": [
- "045bce67-2455-4a3a-ae28-26a65a6ddc94"
+ "c4f7d27b-f219-4af5-9c96-d8e3c2901440"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11991"
],
"x-ms-correlation-request-id": [
- "bb2456c1-d5b7-4242-a88a-7027d3328681"
+ "c4f7d27b-f219-4af5-9c96-d8e3c2901440"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205436Z:bb2456c1-d5b7-4242-a88a-7027d3328681"
+ "WESTUS:20220401T190037Z:c4f7d27b-f219-4af5-9c96-d8e3c2901440"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:35 GMT"
+ "Fri, 01 Apr 2022 19:00:37 GMT"
],
"Content-Length": [
- "472"
+ "483"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d382569f-9601-4876-bf3b-f4f3571c4716"
+ "85ed997b-1f36-4536-904c-b0750e3d3139"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,7 +489,7 @@
"no-cache"
],
"ETag": [
- "\"vAUBAAAAAAA=\""
+ "\"MgwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -498,25 +498,25 @@
"nosniff"
],
"x-ms-request-id": [
- "6e398545-5e4d-4b6a-bad5-d420e07dc88f"
+ "ae936a4d-944f-426e-8c85-cdddfaec72fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11990"
],
"x-ms-correlation-request-id": [
- "7334462f-7a36-4a3a-a67d-a5eeb6f699cf"
+ "ae936a4d-944f-426e-8c85-cdddfaec72fd"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205436Z:7334462f-7a36-4a3a-a67d-a5eeb6f699cf"
+ "WESTUS:20220401T190037Z:ae936a4d-944f-426e-8c85-cdddfaec72fd"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:35 GMT"
+ "Fri, 01 Apr 2022 19:00:37 GMT"
],
"Content-Length": [
- "465"
+ "475"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -525,26 +525,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps5629\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps6202\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "204c7d06-0814-4dae-ab84-a14a992a55e2"
+ "c97e0f33-b48c-4481-b367-503cdc04125e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -561,22 +561,22 @@
"nosniff"
],
"x-ms-request-id": [
- "32ecc554-b6d7-4c99-ba23-6bea2ecd6b3a"
+ "b0f92c9b-b2a7-4a39-a5c7-62e8704b3c51"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11983"
],
"x-ms-correlation-request-id": [
- "bde77773-570f-49db-91ac-2743dedae014"
+ "b0f92c9b-b2a7-4a39-a5c7-62e8704b3c51"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205446Z:bde77773-570f-49db-91ac-2743dedae014"
+ "WESTUS:20220401T190046Z:b0f92c9b-b2a7-4a39-a5c7-62e8704b3c51"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:46 GMT"
+ "Fri, 01 Apr 2022 19:00:45 GMT"
],
"Content-Length": [
"83"
@@ -592,13 +592,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps3175\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps4901\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf0d537d-f6d8-4650-a915-1393c0b291f0"
+ "f193a721-82c6-4bff-98d0-96afa0d51e25"
],
"If-Match": [
"*"
@@ -607,16 +607,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "201"
+ "202"
]
},
"ResponseHeaders": {
@@ -627,7 +627,7 @@
"no-cache"
],
"ETag": [
- "\"ugUBAAAAAAA=\""
+ "\"MAwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -636,7 +636,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e1e5fd78-0a19-4bf2-8355-fc4853764d2b"
+ "0984a786-928f-4079-a4bd-47b8966c942a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,16 +645,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "43dc96ad-1526-4c54-8c39-467a4300f608"
+ "0984a786-928f-4079-a4bd-47b8966c942a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205435Z:43dc96ad-1526-4c54-8c39-467a4300f608"
+ "WESTUS:20220401T190037Z:0984a786-928f-4079-a4bd-47b8966c942a"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:34 GMT"
+ "Fri, 01 Apr 2022 19:00:36 GMT"
],
"Content-Length": [
- "474"
+ "485"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -663,17 +663,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps3175\",\r\n \"heartbeat\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps4901\",\r\n \"heartbeat\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8393\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7703\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "166bf726-e2a0-49ae-afae-d0e50f0cce36"
+ "5b5972b8-268e-46dd-8ed2-e4d88e5735c8"
],
"If-Match": [
"*"
@@ -682,10 +682,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -702,7 +702,7 @@
"no-cache"
],
"ETag": [
- "\"uwUBAAAAAAA=\""
+ "\"MQwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -711,7 +711,7 @@
"nosniff"
],
"x-ms-request-id": [
- "31cb413b-bd29-469b-9db1-18ceb6621a96"
+ "a7d0cec1-687a-472e-982f-217beb0eee35"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -720,16 +720,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "b45e264f-f26b-4e67-ab0b-17a2939571d5"
+ "a7d0cec1-687a-472e-982f-217beb0eee35"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205436Z:b45e264f-f26b-4e67-ab0b-17a2939571d5"
+ "WESTUS:20220401T190037Z:a7d0cec1-687a-472e-982f-217beb0eee35"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:35 GMT"
+ "Fri, 01 Apr 2022 19:00:37 GMT"
],
"Content-Length": [
- "474"
+ "485"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -738,17 +738,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps3451\",\r\n \"district\": \"ps488\",\r\n \"countryOrRegion\": \"ps2977\"\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps3234\",\r\n \"district\": \"ps9941\",\r\n \"countryOrRegion\": \"ps4364\"\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps5629\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps6202\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d382569f-9601-4876-bf3b-f4f3571c4716"
+ "85ed997b-1f36-4536-904c-b0750e3d3139"
],
"If-Match": [
"*"
@@ -757,10 +757,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -777,7 +777,7 @@
"no-cache"
],
"ETag": [
- "\"vAUBAAAAAAA=\""
+ "\"MgwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -786,7 +786,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ae22e374-7491-4c5a-ad94-8e6cc0be9093"
+ "379cc203-0fb2-481a-aa54-f0c0255e35ae"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -795,16 +795,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "28f70e46-c465-44d3-b8f8-84fc5f3359a7"
+ "379cc203-0fb2-481a-aa54-f0c0255e35ae"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205436Z:28f70e46-c465-44d3-b8f8-84fc5f3359a7"
+ "WESTUS:20220401T190037Z:379cc203-0fb2-481a-aa54-f0c0255e35ae"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:35 GMT"
+ "Fri, 01 Apr 2022 19:00:37 GMT"
],
"Content-Length": [
- "467"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -813,26 +813,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps2435\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps5629\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps8393\",\r\n \"heartbeat\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps1372\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps9013\",\r\n \"city\": \"ps6202\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps7703\",\r\n \"heartbeat\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/listKeys?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/listKeys?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d0d7d6c-9033-4b62-aeee-8baed9b61fab"
+ "0444347f-7aea-47fb-b40e-2962b10f5363"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -843,7 +843,7 @@
"no-cache"
],
"ETag": [
- "\"vAUBAAAAAAA=\""
+ "\"MgwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -852,7 +852,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6a3a9d7d-6f2f-413e-ae04-553f32b41d00"
+ "f426f2d3-822a-4cab-b8b9-c0807e614179"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -861,13 +861,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "d021e7fa-8eeb-42a7-9b92-af5d82dd8c23"
+ "f426f2d3-822a-4cab-b8b9-c0807e614179"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205436Z:d021e7fa-8eeb-42a7-9b92-af5d82dd8c23"
+ "WESTUS:20220401T190038Z:f426f2d3-822a-4cab-b8b9-c0807e614179"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:35 GMT"
+ "Fri, 01 Apr 2022 19:00:37 GMT"
],
"Content-Length": [
"205"
@@ -879,26 +879,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primary\": \"93P88yPROrv+1nQXdLrwmB8G0BWGV4HV9Y7wyFHPVaKMnZAdy+9d0jh+cKD4pijWy4xNkjhO3o0eUKaPPn2DJA==\",\r\n \"secondary\": \"7RToBk46s24JMbzqBzodqSj/jipEaX1zqyjg5zBvGxcf12Ysoqhz/BM4IMgQIYDJNnucGo3/YKCUjrrQDZQGpw==\"\r\n}",
+ "ResponseBody": "{\r\n \"primary\": \"bipCgNeeoGdbrfieL5Z/E3qO1eIpAjKpK0aJUf56/2RCP/SxKUfJQuM4TEnR6xFemwi7i1OdS/Br3pdi6xv8hQ==\",\r\n \"secondary\": \"QQXrbM3+b7v/X6dBLSr+tMFM9eHvyBrN9DlPzcIyo36vUk9S0Z72ToO04lyNlDLynb9PwEKaFz+4CjlqXr1OWQ==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "640ff3e4-90a1-431b-aa23-d49663a82be4"
+ "ca0dbb69-b972-436b-a7b2-a2011e5cbdde"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -915,25 +915,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b1f09a6b-838c-4c6e-a464-68a4a42979cb"
+ "6f4ee0dd-2869-4d08-875b-1399909df2b7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11989"
],
"x-ms-correlation-request-id": [
- "8c4ef7ae-a9c1-4d16-9dff-80e672960122"
+ "6f4ee0dd-2869-4d08-875b-1399909df2b7"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205437Z:8c4ef7ae-a9c1-4d16-9dff-80e672960122"
+ "WESTUS:20220401T190038Z:6f4ee0dd-2869-4d08-875b-1399909df2b7"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:37 GMT"
+ "Fri, 01 Apr 2022 19:00:38 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -942,26 +942,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis/echo-api?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis/echo-api?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "153a511f-d9e0-4c1f-9bdb-b0db925bf04f"
+ "a690199a-c1d3-45a2-a997-5e099e5a340c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -972,7 +972,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/5E=\""
+ "\"AAAAAAAAC04=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -981,7 +981,7 @@
"nosniff"
],
"x-ms-request-id": [
- "39e2afe6-fbfc-4b08-8e01-b084cb64b234"
+ "7b39802d-ca44-420c-956d-0bd75682b63e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -990,16 +990,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "64d7f8aa-3520-4ec0-9924-f1a04296218f"
+ "7b39802d-ca44-420c-956d-0bd75682b63e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205437Z:64d7f8aa-3520-4ec0-9924-f1a04296218f"
+ "WESTUS:20220401T190038Z:7b39802d-ca44-420c-956d-0bd75682b63e"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:37 GMT"
+ "Fri, 01 Apr 2022 19:00:38 GMT"
],
"Content-Length": [
- "619"
+ "629"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1008,26 +1008,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d8ae6d4-8872-426b-a426-5df02e2dec86"
+ "69171f45-5148-476f-9bef-facdde8214ed"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1044,25 +1044,25 @@
"nosniff"
],
"x-ms-request-id": [
- "e5f940a7-b7cc-4e3d-95ce-52c6b8b48d08"
+ "d8539f28-c114-4f19-a0d6-bc9514456ae2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11988"
],
"x-ms-correlation-request-id": [
- "f315ae16-3de9-49a5-a902-585544baf3e8"
+ "d8539f28-c114-4f19-a0d6-bc9514456ae2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205438Z:f315ae16-3de9-49a5-a902-585544baf3e8"
+ "WESTUS:20220401T190040Z:d8539f28-c114-4f19-a0d6-bc9514456ae2"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:38 GMT"
+ "Fri, 01 Apr 2022 19:00:40 GMT"
],
"Content-Length": [
- "754"
+ "764"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1071,26 +1071,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb5846ac-a062-41f4-9985-e27294119272"
+ "73804d80-886d-4edc-9804-b606e1380df4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1107,22 +1107,22 @@
"nosniff"
],
"x-ms-request-id": [
- "8294a078-5aa2-402d-b9ec-f395d96efa22"
+ "8d7ced70-d34d-42f7-89ee-dd2c7e564c1c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11987"
],
"x-ms-correlation-request-id": [
- "ce77701d-316e-4bab-81cf-f1182a0212a1"
+ "8d7ced70-d34d-42f7-89ee-dd2c7e564c1c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205439Z:ce77701d-316e-4bab-81cf-f1182a0212a1"
+ "WESTUS:20220401T190040Z:8d7ced70-d34d-42f7-89ee-dd2c7e564c1c"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:39 GMT"
+ "Fri, 01 Apr 2022 19:00:40 GMT"
],
"Content-Length": [
"34"
@@ -1138,22 +1138,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis/echo-api?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/apis/echo-api?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5493c3c1-9369-4f6b-af79-3496886d5b52"
+ "98314cd1-0608-4eda-b70b-c70e5cdf3f41"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1170,7 +1170,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d5df05c8-5ce6-43d0-91dc-adfc39f09b54"
+ "d08d6ba5-5317-4169-bf73-b4974e28abe4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1179,13 +1179,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "587c483a-edae-4f75-ad1b-f407d7278285"
+ "d08d6ba5-5317-4169-bf73-b4974e28abe4"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205439Z:587c483a-edae-4f75-ad1b-f407d7278285"
+ "WESTUS:20220401T190040Z:d08d6ba5-5317-4169-bf73-b4974e28abe4"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:39 GMT"
+ "Fri, 01 Apr 2022 19:00:40 GMT"
],
"Expires": [
"-1"
@@ -1198,22 +1198,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMyMTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "709e3dea-67b9-4a76-ac5f-c932e55ef21a"
+ "bba8b410-862b-4759-91e5-265320b4d9ca"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1230,7 +1230,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABBdI=\""
+ "\"AAAAAAAADEg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1239,7 +1239,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5b2cc432-46fc-4427-bedc-ca9024d813c4"
+ "8b98a6d9-0008-4fc3-88ad-593ebdd97afb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1248,16 +1248,16 @@
"1194"
],
"x-ms-correlation-request-id": [
- "e9a46296-81ee-4fb9-bbef-b1e88f9e9033"
+ "8b98a6d9-0008-4fc3-88ad-593ebdd97afb"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205440Z:e9a46296-81ee-4fb9-bbef-b1e88f9e9033"
+ "WESTUS:20220401T190041Z:8b98a6d9-0008-4fc3-88ad-593ebdd97afb"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:40 GMT"
+ "Fri, 01 Apr 2022 19:00:41 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1266,26 +1266,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps6834\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps2145\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMyMTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "709e3dea-67b9-4a76-ac5f-c932e55ef21a"
+ "bba8b410-862b-4759-91e5-265320b4d9ca"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1296,7 +1296,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABBdI=\""
+ "\"AAAAAAAADEg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1305,25 +1305,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d4d8a385-dcf3-4bec-85fc-4358253cd59f"
+ "c3c6757b-a276-46a8-bacb-0336c7025aea"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11986"
],
"x-ms-correlation-request-id": [
- "f9ae17c5-3ecb-4692-ba0b-aa13f9d59c13"
+ "c3c6757b-a276-46a8-bacb-0336c7025aea"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205441Z:f9ae17c5-3ecb-4692-ba0b-aa13f9d59c13"
+ "WESTUS:20220401T190041Z:c3c6757b-a276-46a8-bacb-0336c7025aea"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:41 GMT"
+ "Fri, 01 Apr 2022 19:00:41 GMT"
],
"Content-Length": [
- "461"
+ "471"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1332,32 +1332,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps6834\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps2145\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\",\r\n \"hasPrivateKey\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzODY5OD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucy9wczgyODU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"negotiateClientCertificate\": false\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"negotiateClientCertificate\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4f71e2fd-84d6-4064-ac44-7e650879e36c"
+ "3c122451-21d2-4c50-86b3-bbb091639acf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "291"
+ "301"
]
},
"ResponseHeaders": {
@@ -1368,7 +1368,7 @@
"no-cache"
],
"ETag": [
- "\"1QUBAAAAAAA=\""
+ "\"SwwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1377,7 +1377,7 @@
"nosniff"
],
"x-ms-request-id": [
- "87953ab7-f418-4fbd-9eb6-8e55875b7be6"
+ "e8399148-652a-4d9c-818a-644a2424345f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1386,16 +1386,16 @@
"1193"
],
"x-ms-correlation-request-id": [
- "baaab43f-15ab-4a6d-98c1-192f4c62f9b4"
+ "e8399148-652a-4d9c-818a-644a2424345f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205442Z:baaab43f-15ab-4a6d-98c1-192f4c62f9b4"
+ "WESTUS:20220401T190042Z:e8399148-652a-4d9c-818a-644a2424345f"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:42 GMT"
+ "Fri, 01 Apr 2022 19:00:42 GMT"
],
"Content-Length": [
- "676"
+ "696"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1404,26 +1404,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8698\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8285\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzODY5OD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucy9wczgyODU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "331d5020-9ecf-42a7-9dd1-9573fb70bf25"
+ "b3d98bd6-fb42-4936-a55f-6f6615b7191d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1434,7 +1434,7 @@
"no-cache"
],
"ETag": [
- "\"1QUBAAAAAAA=\""
+ "\"SwwAAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1443,25 +1443,25 @@
"nosniff"
],
"x-ms-request-id": [
- "a432bbac-b9e2-4d9d-9074-fa0092fb20f8"
+ "db97e570-45eb-4595-a323-236155e84ef5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11985"
],
"x-ms-correlation-request-id": [
- "3a1a0355-dd20-4123-bcf3-916a605b6333"
+ "db97e570-45eb-4595-a323-236155e84ef5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205442Z:3a1a0355-dd20-4123-bcf3-916a605b6333"
+ "WESTUS:20220401T190043Z:db97e570-45eb-4595-a323-236155e84ef5"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:42 GMT"
+ "Fri, 01 Apr 2022 19:00:43 GMT"
],
"Content-Length": [
- "676"
+ "696"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1470,26 +1470,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8698\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8285\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4698e04d-3669-4bb8-a649-23a87e031ed9"
+ "6fc871f7-2408-4a52-8cff-5a6a65a523bb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1506,25 +1506,25 @@
"nosniff"
],
"x-ms-request-id": [
- "5e89645f-4298-47a5-b84e-5d5b4ade0364"
+ "af04cf75-60b5-4864-bd43-85108cf99c25"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11984"
],
"x-ms-correlation-request-id": [
- "661c63af-94a3-4207-86d2-2a95521ea6af"
+ "af04cf75-60b5-4864-bd43-85108cf99c25"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205443Z:661c63af-94a3-4207-86d2-2a95521ea6af"
+ "WESTUS:20220401T190044Z:af04cf75-60b5-4864-bd43-85108cf99c25"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:43 GMT"
+ "Fri, 01 Apr 2022 19:00:43 GMT"
],
"Content-Length": [
- "768"
+ "788"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1533,17 +1533,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8698\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps8285\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations/ps8698?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzODY5OD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372/hostnameConfigurations/ps8285?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzIvaG9zdG5hbWVDb25maWd1cmF0aW9ucy9wczgyODU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7015c463-e47b-4db2-ab0e-ad0ecef04864"
+ "575d3b84-6941-4a6f-8841-a9e736fd9fa6"
],
"If-Match": [
"*"
@@ -1552,10 +1552,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1572,7 +1572,7 @@
"nosniff"
],
"x-ms-request-id": [
- "74080233-913b-40ce-a73d-ee61d3925d95"
+ "6ddf741c-6ff6-45ec-8320-31425eb89fd3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1581,13 +1581,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "1abeca0a-e74d-4489-92d3-8a78c10129e5"
+ "6ddf741c-6ff6-45ec-8320-31425eb89fd3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205443Z:1abeca0a-e74d-4489-92d3-8a78c10129e5"
+ "WESTUS:20220401T190044Z:6ddf741c-6ff6-45ec-8320-31425eb89fd3"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:43 GMT"
+ "Fri, 01 Apr 2022 19:00:44 GMT"
],
"Expires": [
"-1"
@@ -1600,13 +1600,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/certificates/ps2145?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9jZXJ0aWZpY2F0ZXMvcHMyMTQ1P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66bdb152-21a5-4a6e-8c93-ae265f43741e"
+ "c4928276-f2aa-41eb-8ec7-32c469739d4a"
],
"If-Match": [
"*"
@@ -1615,10 +1615,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1635,7 +1635,7 @@
"nosniff"
],
"x-ms-request-id": [
- "81b64ca9-2c5c-482c-8bbc-073e02813c9a"
+ "9b885a38-6405-417c-b869-4727679d95a7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1644,13 +1644,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "0096cf47-78d0-40e1-974a-c7a4ea29e359"
+ "9b885a38-6405-417c-b869-4727679d95a7"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205445Z:0096cf47-78d0-40e1-974a-c7a4ea29e359"
+ "WESTUS:20220401T190045Z:9b885a38-6405-417c-b869-4727679d95a7"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:45 GMT"
+ "Fri, 01 Apr 2022 19:00:45 GMT"
],
"Expires": [
"-1"
@@ -1663,13 +1663,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/gateways/ps1372?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9nYXRld2F5cy9wczEzNzI/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7671b02a-bd52-4ad9-8dbd-923e7e2faf30"
+ "dd8ac737-e4ba-4bd2-b61e-2d8765b2ada3"
],
"If-Match": [
"*"
@@ -1678,10 +1678,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1698,7 +1698,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b3321450-05bc-4127-a3fd-472a74737e06"
+ "19222f96-585f-4247-8272-2db260dc0903"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1707,13 +1707,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "a56287cc-ba42-4eb0-809d-23a88ec45141"
+ "19222f96-585f-4247-8272-2db260dc0903"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210720T205446Z:a56287cc-ba42-4eb0-809d-23a88ec45141"
+ "WESTUS:20220401T190046Z:19222f96-585f-4247-8272-2db260dc0903"
],
"Date": [
- "Tue, 20 Jul 2021 20:54:46 GMT"
+ "Fri, 01 Apr 2022 19:00:45 GMT"
],
"Expires": [
"-1"
@@ -1728,20 +1728,20 @@
],
"Names": {
"": [
- "ps2435",
- "ps8698",
- "ps6834",
- "ps9171",
- "ps3451",
- "ps1616",
- "ps2977",
- "ps488",
- "ps3175",
- "ps8393",
- "ps5629"
+ "ps1372",
+ "ps8285",
+ "ps2145",
+ "ps6546",
+ "ps3234",
+ "ps9013",
+ "ps4364",
+ "ps9941",
+ "ps4901",
+ "ps7703",
+ "ps6202"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json
index 9cdf273ac79c..bbcfc4c35197 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5a0805d-0185-458b-adb9-c9c2476e8435"
+ "992b4733-ba9d-4c43-87f5-993072758165"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "889712e2-e485-41cd-9d5a-657acd72f79d"
+ "4f17f68a-2cea-4634-8c62-8bbaeeb3ef58"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "23918c29-0a31-4467-8623-85929fa728e7"
+ "4f17f68a-2cea-4634-8c62-8bbaeeb3ef58"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001236Z:23918c29-0a31-4467-8623-85929fa728e7"
+ "WESTUS:20220401T185922Z:4f17f68a-2cea-4634-8c62-8bbaeeb3ef58"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:36 GMT"
+ "Fri, 01 Apr 2022 18:59:21 GMT"
],
"Content-Length": [
- "1808"
+ "1838"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9hZG1pbmlzdHJhdG9ycz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/administrators?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvYWRtaW5pc3RyYXRvcnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cedae6c5-b60a-4ba0-99e0-a3169ee59ec6"
+ "cd40462b-5767-4154-9ac3-dda880ffdcb5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,7 +90,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACIE=\""
+ "\"AAAAAAAACIY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -99,7 +99,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ba5d77db-fd13-4413-88ff-cde3a318f3a4"
+ "e40bd71a-d926-4967-b5a1-b94127423e0f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,16 +108,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "71b359d4-c8f0-4807-9ab4-33cad9b164fb"
+ "e40bd71a-d926-4967-b5a1-b94127423e0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001237Z:71b359d4-c8f0-4807-9ab4-33cad9b164fb"
+ "WESTUS:20220401T185922Z:e40bd71a-d926-4967-b5a1-b94127423e0f"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:36 GMT"
+ "Fri, 01 Apr 2022 18:59:21 GMT"
],
"Content-Length": [
- "562"
+ "572"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +126,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9kZXZlbG9wZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/developers?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvZGV2ZWxvcGVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9cbbc9a-52b0-446a-9660-a36a5a44d5bc"
+ "f69a7449-4e09-42bc-bd7e-ba6cdf78ee49"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,7 +156,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACII=\""
+ "\"AAAAAAAACIc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -165,7 +165,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0ab10d17-b8b7-4520-9262-30251b45b084"
+ "c2b2cc55-820d-4040-85a2-a99a4d25e76b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -174,16 +174,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "540f9440-d592-4f49-9354-0eae83a020a9"
+ "c2b2cc55-820d-4040-85a2-a99a4d25e76b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001237Z:540f9440-d592-4f49-9354-0eae83a020a9"
+ "WESTUS:20220401T185922Z:c2b2cc55-820d-4040-85a2-a99a4d25e76b"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:36 GMT"
+ "Fri, 01 Apr 2022 18:59:21 GMT"
],
"Content-Length": [
- "518"
+ "528"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,26 +192,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/guests?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/guests?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvZ3Vlc3RzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74a45251-4471-41db-867c-ec6734f4b467"
+ "0f425362-4a95-4780-b083-e17e52c8d706"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -222,7 +222,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACIM=\""
+ "\"AAAAAAAACIg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9387159b-51e3-42aa-9adf-4ccbe7902441"
+ "2a38ebc9-39b6-4ef4-b4a2-e2456cd5dbaf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "13c8a2e1-e026-453b-97f9-857fb597dca7"
+ "2a38ebc9-39b6-4ef4-b4a2-e2456cd5dbaf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001237Z:13c8a2e1-e026-453b-97f9-857fb597dca7"
+ "WESTUS:20220401T185922Z:2a38ebc9-39b6-4ef4-b4a2-e2456cd5dbaf"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:36 GMT"
+ "Fri, 01 Apr 2022 18:59:21 GMT"
],
"Content-Length": [
- "538"
+ "548"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,26 +258,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps3090\",\r\n \"description\": \"ps6658\",\r\n \"type\": \"custom\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8746\",\r\n \"description\": \"ps6259\",\r\n \"type\": \"custom\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6386b48f-0a05-41a1-9af9-bafea5fe7d09"
+ "97fdf6a7-33a9-4f8a-91e8-601fb2c4a934"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,7 +294,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+w=\""
+ "\"AAAAAAAAC64=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -303,7 +303,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d46ba41a-4349-4ed4-83ba-47b3d83a9b5d"
+ "710c8a0e-48dc-4c69-93e3-194dad4dd4ae"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,16 +312,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "5dee3764-62c5-4c5e-8a0b-75982022575e"
+ "710c8a0e-48dc-4c69-93e3-194dad4dd4ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001238Z:5dee3764-62c5-4c5e-8a0b-75982022575e"
+ "WESTUS:20220401T185923Z:710c8a0e-48dc-4c69-93e3-194dad4dd4ae"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:38 GMT"
+ "Fri, 01 Apr 2022 18:59:22 GMT"
],
"Content-Length": [
- "401"
+ "413"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,26 +330,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps3090\",\r\n \"description\": \"ps6658\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps8746\",\r\n \"description\": \"ps6259\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6386b48f-0a05-41a1-9af9-bafea5fe7d09"
+ "97fdf6a7-33a9-4f8a-91e8-601fb2c4a934"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,7 +360,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+w=\""
+ "\"AAAAAAAAC64=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -369,7 +369,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5a3062b5-3bb9-4114-a11a-2b03ae555d88"
+ "b2a0f12a-db0a-4e41-935b-92b002373f7f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -378,16 +378,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "bba40a43-41d7-43d4-8ec4-a4d4d525abee"
+ "b2a0f12a-db0a-4e41-935b-92b002373f7f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001238Z:bba40a43-41d7-43d4-8ec4-a4d4d525abee"
+ "WESTUS:20220401T185923Z:b2a0f12a-db0a-4e41-935b-92b002373f7f"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:38 GMT"
+ "Fri, 01 Apr 2022 18:59:23 GMT"
],
"Content-Length": [
- "401"
+ "413"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,26 +396,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps3090\",\r\n \"description\": \"ps6658\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps8746\",\r\n \"description\": \"ps6259\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91c222cb-3718-4efb-8682-c2c1fd4b501c"
+ "8b702e9c-d4eb-45a3-af0f-59818152c134"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+8=\""
+ "\"AAAAAAAAC7E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -435,7 +435,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7fa67086-1198-4ba0-81a4-612ffa93ded4"
+ "47ef2bb0-3b1d-410c-b1b2-ccef49da4bba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -444,16 +444,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "6dc55796-2dd6-4705-9ddc-55ff85ce10fb"
+ "47ef2bb0-3b1d-410c-b1b2-ccef49da4bba"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001239Z:6dc55796-2dd6-4705-9ddc-55ff85ce10fb"
+ "WESTUS:20220401T185924Z:47ef2bb0-3b1d-410c-b1b2-ccef49da4bba"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:38 GMT"
+ "Fri, 01 Apr 2022 18:59:23 GMT"
],
"Content-Length": [
- "400"
+ "413"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,26 +462,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "006f738f-efb0-41e7-b9ab-162f5d1ddb76"
+ "f7cc5a75-2055-486d-96c9-268cb826b6a9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,7 +498,7 @@
"nosniff"
],
"x-ms-request-id": [
- "df6b2155-41a1-4368-8b84-877300fab53e"
+ "b22f0888-c5d0-4bd4-9449-f023958fb53d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,13 +507,13 @@
"11986"
],
"x-ms-correlation-request-id": [
- "ed4910cf-42a0-4e52-9c97-921394884faa"
+ "b22f0888-c5d0-4bd4-9449-f023958fb53d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001244Z:ed4910cf-42a0-4e52-9c97-921394884faa"
+ "WESTUS:20220401T185926Z:b22f0888-c5d0-4bd4-9449-f023958fb53d"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:43 GMT"
+ "Fri, 01 Apr 2022 18:59:25 GMT"
],
"Content-Length": [
"81"
@@ -529,13 +529,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91c222cb-3718-4efb-8682-c2c1fd4b501c"
+ "8b702e9c-d4eb-45a3-af0f-59818152c134"
],
"If-Match": [
"*"
@@ -544,16 +544,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "86"
+ "87"
]
},
"ResponseHeaders": {
@@ -564,7 +564,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+8=\""
+ "\"AAAAAAAAC7E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -573,7 +573,7 @@
"nosniff"
],
"x-ms-request-id": [
- "dd313866-1ca6-4d9a-838b-5381fd915d9b"
+ "a6c6c9eb-546f-4a34-8c6d-4e3dd68fb77e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -582,16 +582,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "7d6ef448-82b0-4dc8-ab2a-ae1bdfcc33b0"
+ "a6c6c9eb-546f-4a34-8c6d-4e3dd68fb77e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001239Z:7d6ef448-82b0-4dc8-ab2a-ae1bdfcc33b0"
+ "WESTUS:20220401T185924Z:a6c6c9eb-546f-4a34-8c6d-4e3dd68fb77e"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:38 GMT"
+ "Fri, 01 Apr 2022 18:59:23 GMT"
],
"Content-Length": [
- "400"
+ "413"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -600,26 +600,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "249b0be6-580f-470c-98a8-7553715858d4"
+ "0984963d-012d-4b85-951a-b5f6d6d8bd27"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -636,7 +636,7 @@
"nosniff"
],
"x-ms-request-id": [
- "28d2d38e-0013-4851-bb0e-23b0c6317ba9"
+ "49ea62e8-fb82-40bf-88e2-d033ac5e8a9a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,16 +645,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "d7c8fd1d-fbf0-4fa5-b403-6535d1c5207a"
+ "49ea62e8-fb82-40bf-88e2-d033ac5e8a9a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001239Z:d7c8fd1d-fbf0-4fa5-b403-6535d1c5207a"
+ "WESTUS:20220401T185924Z:49ea62e8-fb82-40bf-88e2-d033ac5e8a9a"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:38 GMT"
+ "Fri, 01 Apr 2022 18:59:23 GMT"
],
"Content-Length": [
- "1287"
+ "1305"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -663,26 +663,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzMzUwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9wczE0ODE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29836173-f9fb-4589-9806-0ca7c9243f10"
+ "9c682489-6486-4f1b-a8a0-a5be6c2b5af8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -693,7 +693,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+8=\""
+ "\"AAAAAAAAC7E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -702,7 +702,7 @@
"nosniff"
],
"x-ms-request-id": [
- "fcf0d88b-b57b-4d69-baaf-6dbe3fff0a5b"
+ "7efdacdb-e729-4a39-a5ce-36c10dc8c4c6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -711,16 +711,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "c7729575-5dc4-4e96-bcbd-7c17941a4471"
+ "7efdacdb-e729-4a39-a5ce-36c10dc8c4c6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001239Z:c7729575-5dc4-4e96-bcbd-7c17941a4471"
+ "WESTUS:20220401T185924Z:7efdacdb-e729-4a39-a5ce-36c10dc8c4c6"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:39 GMT"
+ "Fri, 01 Apr 2022 18:59:23 GMT"
],
"Content-Length": [
- "426"
+ "439"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -729,26 +729,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4a8f62f-8d0f-437f-9d15-4b5630a4d7e6"
+ "45d91dd8-4231-436b-9e06-b051bf37572a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -765,7 +765,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2bc124a5-2e7a-4d1e-9edf-d06940fc1eff"
+ "59873581-f6e9-4b46-b9cd-cdfd4e817e88"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -774,16 +774,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "bc21b2a8-717c-4fc8-bd8c-9aace352db80"
+ "59873581-f6e9-4b46-b9cd-cdfd4e817e88"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001240Z:bc21b2a8-717c-4fc8-bd8c-9aace352db80"
+ "WESTUS:20220401T185924Z:59873581-f6e9-4b46-b9cd-cdfd4e817e88"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:39 GMT"
+ "Fri, 01 Apr 2022 18:59:23 GMT"
],
"Content-Length": [
- "2363"
+ "2406"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -792,26 +792,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52998508-11ea-4850-8502-5b9e1fd99076"
+ "3fe18696-2586-4a41-a4d7-7740657e4802"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -828,7 +828,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b6322dc1-6e7d-4b45-a58b-2277a86360c6"
+ "55d71f82-9a00-43ee-bb7b-e59ce61ad17f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -837,16 +837,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "eb92a59e-8a8e-4d02-b62f-2852b7f451cc"
+ "55d71f82-9a00-43ee-bb7b-e59ce61ad17f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001240Z:eb92a59e-8a8e-4d02-b62f-2852b7f451cc"
+ "WESTUS:20220401T185924Z:55d71f82-9a00-43ee-bb7b-e59ce61ad17f"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:40 GMT"
+ "Fri, 01 Apr 2022 18:59:24 GMT"
],
"Content-Length": [
- "1886"
+ "1916"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -855,26 +855,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzMzUwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9wczE0ODE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa963712-622d-43f2-8b3d-6047cdf5d614"
+ "b6756128-a510-4a89-a39c-bf544329d52a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -891,7 +891,7 @@
"nosniff"
],
"x-ms-request-id": [
- "557da25a-a38e-44eb-9935-ede10310e16c"
+ "4e2a5335-028f-4e17-b4f4-291d079b2064"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -900,13 +900,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "cdc21493-434b-4dbc-9f84-60f6ef2d6b18"
+ "4e2a5335-028f-4e17-b4f4-291d079b2064"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001240Z:cdc21493-434b-4dbc-9f84-60f6ef2d6b18"
+ "WESTUS:20220401T185924Z:4e2a5335-028f-4e17-b4f4-291d079b2064"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:40 GMT"
+ "Fri, 01 Apr 2022 18:59:24 GMT"
],
"Expires": [
"-1"
@@ -919,22 +919,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a639a03-119f-4c61-94ad-2af0c72ee0de"
+ "bf0c2584-7df2-4c78-a380-67b02757421d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -951,7 +951,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7de8b4e7-14cf-4bcc-9f19-65462b867167"
+ "5e7ee135-4e62-4cf2-9f7d-84129e9c8abc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -960,16 +960,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "31707ca7-d147-41b8-98fe-02179ae49f3c"
+ "5e7ee135-4e62-4cf2-9f7d-84129e9c8abc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001240Z:31707ca7-d147-41b8-98fe-02179ae49f3c"
+ "WESTUS:20220401T185925Z:5e7ee135-4e62-4cf2-9f7d-84129e9c8abc"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:40 GMT"
+ "Fri, 01 Apr 2022 18:59:24 GMT"
],
"Content-Length": [
- "664"
+ "674"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -978,26 +978,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350/users/1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MC91c2Vycy8xP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481/users/1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxL3VzZXJzLzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4e2af03-e52d-4906-8915-2970e261b11b"
+ "22de021d-3377-413e-8b40-74278ab6c7eb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1008,7 +1008,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA//s=\""
+ "\"AAAAAAAAC70=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1017,7 +1017,7 @@
"nosniff"
],
"x-ms-request-id": [
- "39072f9f-feb3-456e-b51d-543c47f44d79"
+ "4120a762-d908-4673-8343-9696f51af698"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1026,16 +1026,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "5d5bcb03-5847-4059-927f-e73e67073f5f"
+ "4120a762-d908-4673-8343-9696f51af698"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001241Z:5d5bcb03-5847-4059-927f-e73e67073f5f"
+ "WESTUS:20220401T185925Z:4120a762-d908-4673-8343-9696f51af698"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:41 GMT"
+ "Fri, 01 Apr 2022 18:59:24 GMT"
],
"Content-Length": [
- "503"
+ "514"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1044,26 +1044,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96ee60d9-caf8-4a45-aa7a-446e9be5599b"
+ "1f93f32b-5328-41a4-8daf-2d8fc239843e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1080,7 +1080,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9d9f3508-3656-4ffe-a96f-f7d1b7d99102"
+ "51c615bc-c201-4dc6-aeeb-2d8a8bec4d06"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1089,16 +1089,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "82e69446-6924-4279-8774-e58fc11e79b4"
+ "51c615bc-c201-4dc6-aeeb-2d8a8bec4d06"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001242Z:82e69446-6924-4279-8774-e58fc11e79b4"
+ "WESTUS:20220401T185925Z:51c615bc-c201-4dc6-aeeb-2d8a8bec4d06"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:42 GMT"
+ "Fri, 01 Apr 2022 18:59:24 GMT"
],
"Content-Length": [
- "1712"
+ "1745"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1107,26 +1107,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/ps350\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps350\",\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups/ps1481\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps1481\",\r\n \"properties\": {\r\n \"displayName\": \"ps7389\",\r\n \"description\": \"ps9627\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "04446eb0-3df8-4081-9214-84c0e7c4ae79"
+ "adcc1528-c662-4e07-b12f-7a167b8e65e0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1143,7 +1143,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6e55f260-6dc0-4af0-8eae-e2448c8755b4"
+ "9c07bac2-3d75-4eee-a9a6-d536f50bd046"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1152,16 +1152,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "be1fab11-dc31-41c4-8552-25b70989a35e"
+ "9c07bac2-3d75-4eee-a9a6-d536f50bd046"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001243Z:be1fab11-dc31-41c4-8552-25b70989a35e"
+ "WESTUS:20220401T185925Z:9c07bac2-3d75-4eee-a9a6-d536f50bd046"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:42 GMT"
+ "Fri, 01 Apr 2022 18:59:25 GMT"
],
"Content-Length": [
- "1247"
+ "1267"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1170,26 +1170,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350/users/1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MC91c2Vycy8xP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481/users/1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxL3VzZXJzLzE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be4f5b63-37a2-46ef-8bc0-8148e42e9710"
+ "032d6525-6ae6-4bc9-9578-264ecb5e6a13"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1206,7 +1206,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8d2a1b67-c687-4a2f-b6db-20ead0b38f12"
+ "ce9e853e-8543-4a14-aa09-06f67ab00fee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1215,13 +1215,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "fbd2715c-03d7-41a6-90a9-c683ce00c247"
+ "ce9e853e-8543-4a14-aa09-06f67ab00fee"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001243Z:fbd2715c-03d7-41a6-90a9-c683ce00c247"
+ "WESTUS:20220401T185925Z:ce9e853e-8543-4a14-aa09-06f67ab00fee"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:42 GMT"
+ "Fri, 01 Apr 2022 18:59:24 GMT"
],
"Expires": [
"-1"
@@ -1234,22 +1234,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps6613\",\r\n \"description\": \"ps5121\",\r\n \"type\": \"external\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps7498\",\r\n \"description\": \"ps1129\",\r\n \"type\": \"external\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a5897445-b3af-4f5b-8005-00b47f906c60"
+ "6958c243-2924-402e-835a-fb74ccc303dd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1266,7 +1266,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAAU=\""
+ "\"AAAAAAAAC8c=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1275,7 +1275,7 @@
"nosniff"
],
"x-ms-request-id": [
- "020a5dac-8395-4408-a062-ab0b220d4305"
+ "20033543-6993-4455-9689-2e0b00b7f15f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1284,16 +1284,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "338878cb-e32c-4a45-8c3c-fe7c3b35e43d"
+ "20033543-6993-4455-9689-2e0b00b7f15f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001243Z:338878cb-e32c-4a45-8c3c-fe7c3b35e43d"
+ "WESTUS:20220401T185926Z:20033543-6993-4455-9689-2e0b00b7f15f"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:43 GMT"
+ "Fri, 01 Apr 2022 18:59:25 GMT"
],
"Content-Length": [
- "415"
+ "427"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1302,26 +1302,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps323\",\r\n \"properties\": {\r\n \"displayName\": \"ps6613\",\r\n \"description\": \"ps5121\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1366\",\r\n \"properties\": {\r\n \"displayName\": \"ps7498\",\r\n \"description\": \"ps1129\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a5897445-b3af-4f5b-8005-00b47f906c60"
+ "6958c243-2924-402e-835a-fb74ccc303dd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1332,7 +1332,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAAU=\""
+ "\"AAAAAAAAC8c=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1341,7 +1341,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a60b2962-d3c7-494e-911c-25b565c53211"
+ "f14f40e7-260c-4529-b98d-02b5bbdf1739"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1350,16 +1350,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "3d286974-8dc2-4ed2-91c9-b42d5fcad137"
+ "f14f40e7-260c-4529-b98d-02b5bbdf1739"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001243Z:3d286974-8dc2-4ed2-91c9-b42d5fcad137"
+ "WESTUS:20220401T185926Z:f14f40e7-260c-4529-b98d-02b5bbdf1739"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:43 GMT"
+ "Fri, 01 Apr 2022 18:59:25 GMT"
],
"Content-Length": [
- "403"
+ "415"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1368,26 +1368,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps323\",\r\n \"properties\": {\r\n \"displayName\": \"ps6613\",\r\n \"description\": \"ps5121\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps1366\",\r\n \"properties\": {\r\n \"displayName\": \"ps7498\",\r\n \"description\": \"ps1129\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a4de88b8-0597-48de-a79d-d67ea20a6d38"
+ "7fd70f9c-0378-4f6c-a80e-c9731f5269fb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1404,7 +1404,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e3dbac89-dc7f-4bb7-bf82-d5a8d39ca6fd"
+ "65bf052b-54ea-4562-a1c9-6fb4fe53feee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1413,13 +1413,13 @@
"11985"
],
"x-ms-correlation-request-id": [
- "c7529941-221a-4ae3-a7f3-426c6d420f63"
+ "65bf052b-54ea-4562-a1c9-6fb4fe53feee"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001244Z:c7529941-221a-4ae3-a7f3-426c6d420f63"
+ "WESTUS:20220401T185926Z:65bf052b-54ea-4562-a1c9-6fb4fe53feee"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:44 GMT"
+ "Fri, 01 Apr 2022 18:59:25 GMT"
],
"Content-Length": [
"81"
@@ -1435,13 +1435,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1481?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxNDgxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "479e03ad-f46b-463e-8a2f-9e00ec47bf5c"
+ "0bf21ff1-c77a-4623-beed-6848fd253bf7"
],
"If-Match": [
"*"
@@ -1450,10 +1450,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1470,7 +1470,7 @@
"nosniff"
],
"x-ms-request-id": [
- "78731f69-7bf9-458c-9a4d-279a596e68c5"
+ "5c019c3f-62f1-487a-b379-9b6ff459948b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1479,13 +1479,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "ecc7de7f-486d-4299-9492-eb964b68f508"
+ "5c019c3f-62f1-487a-b379-9b6ff459948b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001244Z:ecc7de7f-486d-4299-9492-eb964b68f508"
+ "WESTUS:20220401T185926Z:5c019c3f-62f1-487a-b379-9b6ff459948b"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:43 GMT"
+ "Fri, 01 Apr 2022 18:59:25 GMT"
],
"Expires": [
"-1"
@@ -1498,13 +1498,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/ps1366?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9ncm91cHMvcHMxMzY2P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95e4e37b-5c66-46d9-ae41-f96c5a98c3dc"
+ "26f32dc4-cdd0-41a9-86ed-e25d9b4f3f9c"
],
"If-Match": [
"*"
@@ -1513,10 +1513,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1533,7 +1533,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9469d9b4-0872-4797-a29b-2ef05f4ffc37"
+ "54f2b806-9449-4a1c-b6a2-4841eb722cfa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1542,13 +1542,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "fd9a7fc0-07b0-4986-9467-fe690e0b3bc0"
+ "54f2b806-9449-4a1c-b6a2-4841eb722cfa"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001244Z:fd9a7fc0-07b0-4986-9467-fe690e0b3bc0"
+ "WESTUS:20220401T185926Z:54f2b806-9449-4a1c-b6a2-4841eb722cfa"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:43 GMT"
+ "Fri, 01 Apr 2022 18:59:25 GMT"
],
"Expires": [
"-1"
@@ -1563,17 +1563,17 @@
],
"Names": {
"": [
- "ps350",
- "ps323",
- "ps3090",
- "ps6658",
- "ps816",
- "ps9328",
- "ps6613",
- "ps5121"
+ "ps1481",
+ "ps1366",
+ "ps8746",
+ "ps6259",
+ "ps7389",
+ "ps9627",
+ "ps7498",
+ "ps1129"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json
index eba5620ce6e1..4282240fd944 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"clientId\": \"ps4174\",\r\n \"clientSecret\": \"ps7883\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"clientId\": \"ps6293\",\r\n \"clientSecret\": \"ps1407\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6b2fbba-be1f-4eaf-ad47-3f608ed4c878"
+ "073c289e-0bfa-4374-910c-5dc65a6aff86"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+k=\""
+ "\"AAAAAAAAC6s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "73122825-eaa4-42bf-95bd-4fc4d5ccca45"
+ "63755eb6-2fb8-438c-a640-79e802744b88"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,16 +51,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "71619b19-e7a7-46a1-a686-8592cbd6d1f0"
+ "63755eb6-2fb8-438c-a640-79e802744b88"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001228Z:71619b19-e7a7-46a1-a686-8592cbd6d1f0"
+ "WESTUS:20220401T185916Z:63755eb6-2fb8-438c-a640-79e802744b88"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:27 GMT"
+ "Fri, 01 Apr 2022 18:59:16 GMT"
],
"Content-Length": [
- "583"
+ "593"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,26 +69,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps4174\",\r\n \"clientSecret\": \"ps7883\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\r\n \"clientSecret\": \"ps1407\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1f9674d-2c85-4287-8775-4a9766a85d45"
+ "495f26a3-383e-4c47-8d75-3d585972e4cd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,7 +99,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+k=\""
+ "\"AAAAAAAAC6s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -108,7 +108,7 @@
"nosniff"
],
"x-ms-request-id": [
- "37b6844e-543c-4a09-a64f-4b942875e136"
+ "cf6bf056-c8f4-4bf6-88c6-ac4090539877"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -117,16 +117,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "08c6d569-9c31-4b13-85e2-6449eade8e5b"
+ "cf6bf056-c8f4-4bf6-88c6-ac4090539877"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001228Z:08c6d569-9c31-4b13-85e2-6449eade8e5b"
+ "WESTUS:20220401T185916Z:cf6bf056-c8f4-4bf6-88c6-ac4090539877"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:27 GMT"
+ "Fri, 01 Apr 2022 18:59:16 GMT"
],
"Content-Length": [
- "552"
+ "562"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -135,26 +135,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps4174\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6185062b-fd29-42b5-a310-ac77eb884a97"
+ "5dac3850-a42a-4ab4-a5dc-66ca6cd7926f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,7 +165,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+o=\""
+ "\"AAAAAAAAC6w=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -174,7 +174,7 @@
"nosniff"
],
"x-ms-request-id": [
- "794479aa-09dc-4bff-a899-7dd331bcba0a"
+ "9af4eaa9-e243-4b99-87ee-29ce6fcc4656"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -183,16 +183,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "f0c82139-c02a-4988-a56b-535579f57452"
+ "9af4eaa9-e243-4b99-87ee-29ce6fcc4656"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001230Z:f0c82139-c02a-4988-a56b-535579f57452"
+ "WESTUS:20220401T185917Z:9af4eaa9-e243-4b99-87ee-29ce6fcc4656"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:29 GMT"
+ "Fri, 01 Apr 2022 18:59:17 GMT"
],
"Content-Length": [
- "609"
+ "619"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -201,26 +201,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps4174\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e7dc37b-e51c-44ee-9881-6e73b8338b5d"
+ "f8c92b6f-856d-4334-b394-4ee16a703dbe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,7 +237,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2e5560ed-a84f-4d6e-a30e-8ad051627e6d"
+ "61853753-27bb-4535-bab2-784fe8eccb95"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,13 +246,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "789b34aa-de29-42c9-9fda-131e34206b8e"
+ "61853753-27bb-4535-bab2-784fe8eccb95"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001230Z:789b34aa-de29-42c9-9fda-131e34206b8e"
+ "WESTUS:20220401T185918Z:61853753-27bb-4535-bab2-784fe8eccb95"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:29 GMT"
+ "Fri, 01 Apr 2022 18:59:18 GMT"
],
"Content-Length": [
"92"
@@ -268,22 +268,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63112a38-6c1d-4ed6-8c91-bfda26cb0f52"
+ "8bfd01c9-2900-468b-b62b-19b7e739249d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -300,7 +300,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2cc58cc5-07db-44e5-b612-d8dd4bdf4480"
+ "bddfe20c-8122-44fd-958b-f64fa9291b3c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,13 +309,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "26e30d3a-f9d1-4735-940b-b37dc1814a7a"
+ "bddfe20c-8122-44fd-958b-f64fa9291b3c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001230Z:26e30d3a-f9d1-4735-940b-b37dc1814a7a"
+ "WESTUS:20220401T185918Z:bddfe20c-8122-44fd-958b-f64fa9291b3c"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:29 GMT"
+ "Fri, 01 Apr 2022 18:59:18 GMT"
],
"Content-Length": [
"92"
@@ -331,22 +331,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkMvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84b4f2b1-1737-4bc6-b4c4-807d9b9260df"
+ "7ce27be8-61e8-4bd3-aa47-803455e03caa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+k=\""
+ "\"AAAAAAAAC6s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a3c4ef51-5a5d-4390-be78-02870e6cc415"
+ "b511a7ae-2bbd-44de-bdff-7e600d9381b5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,13 +375,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a9492a7b-f016-4e0d-94e6-6af9e90e9536"
+ "b511a7ae-2bbd-44de-bdff-7e600d9381b5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001229Z:a9492a7b-f016-4e0d-94e6-6af9e90e9536"
+ "WESTUS:20220401T185916Z:b511a7ae-2bbd-44de-bdff-7e600d9381b5"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:28 GMT"
+ "Fri, 01 Apr 2022 18:59:16 GMT"
],
"Content-Length": [
"25"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps7883\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps1407\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkMvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96029c0c-7f21-42fa-8d12-9087afd95bbb"
+ "c2a13265-b43e-4108-be46-825879076479"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,7 +423,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+o=\""
+ "\"AAAAAAAAC6w=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -432,7 +432,7 @@
"nosniff"
],
"x-ms-request-id": [
- "163870f0-33eb-43e9-ab28-56a305c1c5d9"
+ "e78f0c3a-362a-4246-a86a-69ddc2657a4b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,13 +441,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "6267de33-9fe5-49c4-93f1-d910bb4b933a"
+ "e78f0c3a-362a-4246-a86a-69ddc2657a4b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001230Z:6267de33-9fe5-49c4-93f1-d910bb4b933a"
+ "WESTUS:20220401T185918Z:e78f0c3a-362a-4246-a86a-69ddc2657a4b"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:29 GMT"
+ "Fri, 01 Apr 2022 18:59:18 GMT"
],
"Content-Length": [
"25"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps7883\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps1407\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07656e7d-7169-41fb-b48a-e8c47b193a71"
+ "cb9e1e3b-24fb-41e6-963c-f08a0b03005a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,7 +495,7 @@
"nosniff"
],
"x-ms-request-id": [
- "05fef648-278d-4f9e-9125-9658c6b57744"
+ "0cd15215-5f33-4aab-9f2c-dbd740d7cd81"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +504,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "d948596b-7314-4abc-8337-087533332076"
+ "0cd15215-5f33-4aab-9f2c-dbd740d7cd81"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001229Z:d948596b-7314-4abc-8337-087533332076"
+ "WESTUS:20220401T185917Z:0cd15215-5f33-4aab-9f2c-dbd740d7cd81"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:28 GMT"
+ "Fri, 01 Apr 2022 18:59:16 GMT"
],
"Content-Length": [
- "652"
+ "662"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -522,17 +522,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps4174\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6185062b-fd29-42b5-a310-ac77eb884a97"
+ "5dac3850-a42a-4ab4-a5dc-66ca6cd7926f"
],
"If-Match": [
"*"
@@ -541,10 +541,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -561,7 +561,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/+o=\""
+ "\"AAAAAAAAC6w=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +570,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8ae76ca9-4f6f-4f0f-9e3f-af5b30f03960"
+ "f9c7235c-69db-4b81-9e8a-46a41a60a307"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,16 +579,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "bc3ba7aa-e8ec-48fb-821e-330c7ca3ea17"
+ "f9c7235c-69db-4b81-9e8a-46a41a60a307"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001230Z:bc3ba7aa-e8ec-48fb-821e-330c7ca3ea17"
+ "WESTUS:20220401T185917Z:f9c7235c-69db-4b81-9e8a-46a41a60a307"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:29 GMT"
+ "Fri, 01 Apr 2022 18:59:17 GMT"
],
"Content-Length": [
- "640"
+ "650"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -597,17 +597,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps4174\",\r\n \"clientSecret\": \"ps7883\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps6293\",\r\n \"clientSecret\": \"ps1407\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d306423-22c0-4fd0-b143-6b32f5595fb1"
+ "ffb30a2f-9e25-4bf9-82ff-0c6c0d9db8aa"
],
"If-Match": [
"*"
@@ -616,10 +616,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -636,7 +636,7 @@
"nosniff"
],
"x-ms-request-id": [
- "fc306e3b-e6d4-40d5-a3ae-26c7697a4cb1"
+ "4b5ea905-7453-41df-9e1a-c023519a7c35"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,13 +645,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "1a31171b-773b-4d99-96b3-7aceba37180e"
+ "4b5ea905-7453-41df-9e1a-c023519a7c35"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001230Z:1a31171b-773b-4d99-96b3-7aceba37180e"
+ "WESTUS:20220401T185918Z:4b5ea905-7453-41df-9e1a-c023519a7c35"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:29 GMT"
+ "Fri, 01 Apr 2022 18:59:18 GMT"
],
"Expires": [
"-1"
@@ -664,13 +664,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/AadB2C?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9BYWRCMkM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b32f77e8-5532-4cf0-b21f-a2ae30b7038d"
+ "1d52ec86-1674-4698-87b7-9fa425726cc7"
],
"If-Match": [
"*"
@@ -679,10 +679,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -699,7 +699,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0494f74e-6579-49e8-ad45-14c20b208141"
+ "91bbfbe0-cf84-48a1-97f6-f85f8a77c6f8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -708,13 +708,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "ebfa5d4c-92ba-49a6-8b12-f0eac0d0ea9e"
+ "91bbfbe0-cf84-48a1-97f6-f85f8a77c6f8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001230Z:ebfa5d4c-92ba-49a6-8b12-f0eac0d0ea9e"
+ "WESTUS:20220401T185918Z:91bbfbe0-cf84-48a1-97f6-f85f8a77c6f8"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:29 GMT"
+ "Fri, 01 Apr 2022 18:59:18 GMT"
],
"Expires": [
"-1"
@@ -726,11 +726,11 @@
],
"Names": {
"": [
- "ps4174",
- "ps7883"
+ "ps6293",
+ "ps1407"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json
index ea13a54e33b1..b9a44fa73607 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"clientSecret\": \"ps8940\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"clientSecret\": \"ps2009\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "477ecaae-6598-442f-82b8-569f2d4c2831"
+ "28bc0549-9fa5-49b7-a1ae-869fffbb1717"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1Q=\""
+ "\"AAAAAAAACwM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "617cc2b8-bbc9-4b85-a332-8d62080c2e74"
+ "834dba69-a536-40f9-8cc4-9fb390ab471f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,16 +51,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "b5e64e18-8dd7-4107-963d-7d7f4bf15039"
+ "834dba69-a536-40f9-8cc4-9fb390ab471f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000823Z:b5e64e18-8dd7-4107-963d-7d7f4bf15039"
+ "WESTCENTRALUS:20220401T185700Z:834dba69-a536-40f9-8cc4-9fb390ab471f"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:22 GMT"
+ "Fri, 01 Apr 2022 18:56:59 GMT"
],
"Content-Length": [
- "381"
+ "391"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,26 +69,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"clientSecret\": \"ps8940\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"clientSecret\": \"ps2009\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8dbff30a-9c08-4518-876d-d6017f7477e0"
+ "7a2a052b-e32c-4b0f-8e5b-df65898bc690"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,7 +99,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1Q=\""
+ "\"AAAAAAAACwM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -108,7 +108,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c60b22bf-7518-4c6d-bb65-393b250add72"
+ "73ae2dde-60d1-4828-8a05-80c783bc668e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -117,16 +117,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "f5dc3d09-2d21-4bef-8537-76634d284ba8"
+ "73ae2dde-60d1-4828-8a05-80c783bc668e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000824Z:f5dc3d09-2d21-4bef-8537-76634d284ba8"
+ "WESTCENTRALUS:20220401T185700Z:73ae2dde-60d1-4828-8a05-80c783bc668e"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:23 GMT"
+ "Fri, 01 Apr 2022 18:56:59 GMT"
],
"Content-Length": [
- "350"
+ "360"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -135,26 +135,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "157592ff-c8e5-4f54-8c4a-ac9161593336"
+ "1d183bb8-c4f1-4d30-ba08-e69c4a18b93e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,7 +165,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1U=\""
+ "\"AAAAAAAACwQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -174,7 +174,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d43a383d-735b-4c30-8e84-7b024641863d"
+ "57559292-660a-4bba-9dd1-04205cb77682"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -183,16 +183,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5d4a7548-2a13-4bc9-9cfd-dbbc24424b8e"
+ "57559292-660a-4bba-9dd1-04205cb77682"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000824Z:5d4a7548-2a13-4bc9-9cfd-dbbc24424b8e"
+ "WESTCENTRALUS:20220401T185701Z:57559292-660a-4bba-9dd1-04205cb77682"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:23 GMT"
+ "Fri, 01 Apr 2022 18:57:00 GMT"
],
"Content-Length": [
- "350"
+ "360"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -201,26 +201,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9bb31a8c-917d-49d8-9820-ec4e8c7482b7"
+ "ab23cacf-5406-4df7-9bce-b7cf568665d0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,7 +237,7 @@
"nosniff"
],
"x-ms-request-id": [
- "52804492-25dc-452a-831c-f28aa20ea6ab"
+ "0834cd02-6b02-4f07-ab5f-8543c476d1ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,13 +246,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "1531c853-ebd4-42f4-9867-abba732b331b"
+ "0834cd02-6b02-4f07-ab5f-8543c476d1ab"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000825Z:1531c853-ebd4-42f4-9867-abba732b331b"
+ "WESTCENTRALUS:20220401T185701Z:0834cd02-6b02-4f07-ab5f-8543c476d1ab"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:24 GMT"
+ "Fri, 01 Apr 2022 18:57:00 GMT"
],
"Content-Length": [
"92"
@@ -268,22 +268,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93a8f91b-13c2-4eec-8a8d-bfb2bfaa3140"
+ "d0299fed-fd60-4462-afc4-57e5140b3d29"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -300,7 +300,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c747b4ec-19c6-47ac-a299-b490398f59e1"
+ "03f88e15-c782-45ad-b4b7-25f84e21570a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,13 +309,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "6d76f45d-9ed4-4d2a-8abd-a94e2603425d"
+ "03f88e15-c782-45ad-b4b7-25f84e21570a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000825Z:6d76f45d-9ed4-4d2a-8abd-a94e2603425d"
+ "WESTCENTRALUS:20220401T185702Z:03f88e15-c782-45ad-b4b7-25f84e21570a"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:24 GMT"
+ "Fri, 01 Apr 2022 18:57:01 GMT"
],
"Content-Length": [
"92"
@@ -331,22 +331,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vay9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9a05685-ebba-4e42-9595-f0ca93409448"
+ "0515b1ed-b748-495d-8530-c4a53dd3c860"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1Q=\""
+ "\"AAAAAAAACwM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "86e557ec-0b62-4d63-a5bf-16a07b9a6f54"
+ "2fd45c00-a5ca-4c9e-92e5-aa4c9c4ffdbd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,13 +375,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "ab373017-342a-44e6-b950-d8b77a46488e"
+ "2fd45c00-a5ca-4c9e-92e5-aa4c9c4ffdbd"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000824Z:ab373017-342a-44e6-b950-d8b77a46488e"
+ "WESTCENTRALUS:20220401T185700Z:2fd45c00-a5ca-4c9e-92e5-aa4c9c4ffdbd"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:23 GMT"
+ "Fri, 01 Apr 2022 18:56:59 GMT"
],
"Content-Length": [
"25"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps8940\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps2009\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vay9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b42f8c7-1e6b-4645-8328-263ce14834bd"
+ "60e5778a-3f89-41bf-a081-ab2d42db228a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,7 +423,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1U=\""
+ "\"AAAAAAAACwQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -432,7 +432,7 @@
"nosniff"
],
"x-ms-request-id": [
- "812b6d5a-d9ab-4e74-ac43-915b35d2097d"
+ "6fcfc14e-8dd5-42be-a607-7dfa128c203e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,13 +441,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "dd04b33a-0710-4164-a09c-78b2187b0de1"
+ "6fcfc14e-8dd5-42be-a607-7dfa128c203e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000824Z:dd04b33a-0710-4164-a09c-78b2187b0de1"
+ "WESTCENTRALUS:20220401T185701Z:6fcfc14e-8dd5-42be-a607-7dfa128c203e"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:23 GMT"
+ "Fri, 01 Apr 2022 18:57:00 GMT"
],
"Content-Length": [
"25"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps2743\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps6087\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15107153-3373-419f-b8ba-86f5874ce76c"
+ "8d737503-ce81-4a88-9f64-4b35cc2c7bd8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,7 +495,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bcc423d0-1b51-483c-98ba-41206413b169"
+ "3c6b0c9a-a1c9-4482-9be8-b93bce035525"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +504,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "2694906c-0872-49cd-961e-4ccc702e0525"
+ "3c6b0c9a-a1c9-4482-9be8-b93bce035525"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000824Z:2694906c-0872-49cd-961e-4ccc702e0525"
+ "WESTCENTRALUS:20220401T185700Z:3c6b0c9a-a1c9-4482-9be8-b93bce035525"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:23 GMT"
+ "Fri, 01 Apr 2022 18:56:59 GMT"
],
"Content-Length": [
- "426"
+ "436"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -522,17 +522,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps2743\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps6087\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "157592ff-c8e5-4f54-8c4a-ac9161593336"
+ "1d183bb8-c4f1-4d30-ba08-e69c4a18b93e"
],
"If-Match": [
"*"
@@ -541,10 +541,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -561,7 +561,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1U=\""
+ "\"AAAAAAAACwQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +570,7 @@
"nosniff"
],
"x-ms-request-id": [
- "02a2db8d-4407-40bd-85d1-6b61d11b6a73"
+ "8cbbef85-4df7-4b30-b33d-5be4502103c9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,16 +579,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "eae6d7da-dce5-42b3-94e0-c26424ee2a98"
+ "8cbbef85-4df7-4b30-b33d-5be4502103c9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000824Z:eae6d7da-dce5-42b3-94e0-c26424ee2a98"
+ "WESTCENTRALUS:20220401T185701Z:8cbbef85-4df7-4b30-b33d-5be4502103c9"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:23 GMT"
+ "Fri, 01 Apr 2022 18:57:00 GMT"
],
"Content-Length": [
- "381"
+ "391"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -597,17 +597,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"clientSecret\": \"ps2743\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1177\",\r\n \"clientSecret\": \"ps6087\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12ec994a-12da-4b61-a22d-41bb60754678"
+ "becbda77-a420-4c46-bcdb-d5ee81c08671"
],
"If-Match": [
"*"
@@ -616,10 +616,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -636,7 +636,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0fad45c0-3cc1-4912-bc19-159cc427508d"
+ "2d96fe40-9bcc-404e-8847-6b4fd5e01fcc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,13 +645,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "74bcebd8-68cf-4b16-a768-3a0fc587841d"
+ "2d96fe40-9bcc-404e-8847-6b4fd5e01fcc"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000825Z:74bcebd8-68cf-4b16-a768-3a0fc587841d"
+ "WESTCENTRALUS:20220401T185701Z:2d96fe40-9bcc-404e-8847-6b4fd5e01fcc"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:24 GMT"
+ "Fri, 01 Apr 2022 18:57:00 GMT"
],
"Expires": [
"-1"
@@ -664,13 +664,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/identityProviders/Facebook?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9pZGVudGl0eVByb3ZpZGVycy9GYWNlYm9vaz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de588e49-f698-4ea7-ae24-ea0f03f877b8"
+ "42bd69fc-e4f8-4804-85af-2ec5369bab31"
],
"If-Match": [
"*"
@@ -679,10 +679,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -699,7 +699,7 @@
"nosniff"
],
"x-ms-request-id": [
- "61c9edd6-3832-43ef-9415-23f990297f94"
+ "cfa3a800-885d-4fea-974e-44e8af0016a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -708,13 +708,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "56fdf13f-e44e-43ab-8218-f9e2d8154da9"
+ "cfa3a800-885d-4fea-974e-44e8af0016a5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T000825Z:56fdf13f-e44e-43ab-8218-f9e2d8154da9"
+ "WESTCENTRALUS:20220401T185702Z:cfa3a800-885d-4fea-974e-44e8af0016a5"
],
"Date": [
- "Tue, 13 Jul 2021 00:08:24 GMT"
+ "Fri, 01 Apr 2022 18:57:01 GMT"
],
"Expires": [
"-1"
@@ -726,12 +726,12 @@
],
"Names": {
"": [
- "ps6025",
- "ps8940",
- "ps2743"
+ "ps1177",
+ "ps2009",
+ "ps6087"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json
index 6b978bda2ef0..a144681cb206 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json
@@ -1,28 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps9214\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://sdkeventhub.servicebus.windows.net/;SharedAccessKeyName=send;SharedAccessKey=GUjgwMQ25fgHXE4ShYesdTHGEafE1hYQ4fOqFqH6HqI=;EntityPath=powershell\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1839\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://sdkeventhub.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=JAjWJTI8CDJaPz0so9U5OqmtW3qFdkA/BGtbxsa4YeI=\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd761470-846d-4b6f-93f9-8255745107e0"
+ "dc66f02c-0745-4993-ba49-9618174cffbe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "364"
+ "363"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAnQ=\""
+ "\"AAAAAAAADr0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ab1f9490-841b-4bea-b9b9-70db2a7cec1f"
+ "3a2b5648-bbd5-4025-8949-6b467b328d34"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,16 +51,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e3fe7424-7a74-4615-9363-3d3856515b5d"
+ "3a2b5648-bbd5-4025-8949-6b467b328d34"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004228Z:e3fe7424-7a74-4615-9363-3d3856515b5d"
+ "WESTUS:20220406T001347Z:3a2b5648-bbd5-4025-8949-6b467b328d34"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:28 GMT"
+ "Wed, 06 Apr 2022 00:13:47 GMT"
],
"Content-Length": [
- "527"
+ "537"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps9214\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1839\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"isBuffered\": false\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"isBuffered\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "595b7b1c-aed1-4560-be10-1cd19c71f179"
+ "77996e53-1870-419e-afd7-8e52bada692a"
],
"If-Match": [
"*"
@@ -88,16 +88,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "119"
+ "118"
]
},
"ResponseHeaders": {
@@ -108,7 +108,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAnc=\""
+ "\"AAAAAAAADsA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -117,7 +117,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ac943eb2-b25b-49f0-a5c8-b11be7e7fd51"
+ "c724cd6a-58c7-4dd7-bdd5-a5d9b548e77b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -126,16 +126,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "1646fd98-a3eb-49c1-93f9-bbc2396e22b7"
+ "c724cd6a-58c7-4dd7-bdd5-a5d9b548e77b"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004229Z:1646fd98-a3eb-49c1-93f9-bbc2396e22b7"
+ "WESTUS:20220406T001349Z:c724cd6a-58c7-4dd7-bdd5-a5d9b548e77b"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:29 GMT"
+ "Wed, 06 Apr 2022 00:13:48 GMT"
],
"Content-Length": [
- "528"
+ "537"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -144,26 +144,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "595b7b1c-aed1-4560-be10-1cd19c71f179"
+ "77996e53-1870-419e-afd7-8e52bada692a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -174,7 +174,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAnc=\""
+ "\"AAAAAAAADsA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -183,25 +183,25 @@
"nosniff"
],
"x-ms-request-id": [
- "f71e06c3-6dd9-4c89-ade6-a8c52f8770ec"
+ "a2d51543-603d-43d5-bcb7-750aac81b1ac"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11999"
],
"x-ms-correlation-request-id": [
- "219fe671-b4b9-4094-8deb-6c98aead66e9"
+ "a2d51543-603d-43d5-bcb7-750aac81b1ac"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004229Z:219fe671-b4b9-4094-8deb-6c98aead66e9"
+ "WESTUS:20220406T001349Z:a2d51543-603d-43d5-bcb7-750aac81b1ac"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:29 GMT"
+ "Wed, 06 Apr 2022 00:13:48 GMT"
],
"Content-Length": [
- "528"
+ "537"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -210,26 +210,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58172da0-49bd-45dc-b1b1-533f67d7e772"
+ "d0816007-cd69-4655-9aed-ef1569154574"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -240,7 +240,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAnc=\""
+ "\"AAAAAAAADsA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -249,25 +249,25 @@
"nosniff"
],
"x-ms-request-id": [
- "889cc710-001e-460f-9a71-ec3c2bc95934"
+ "90132a46-62c9-46a8-b8de-37879441c6e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11997"
],
"x-ms-correlation-request-id": [
- "d3268c8c-c9ca-47a1-b017-f0deeaf9ad6d"
+ "90132a46-62c9-46a8-b8de-37879441c6e1"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004230Z:d3268c8c-c9ca-47a1-b017-f0deeaf9ad6d"
+ "WESTUS:20220406T001351Z:90132a46-62c9-46a8-b8de-37879441c6e1"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:30 GMT"
+ "Wed, 06 Apr 2022 00:13:50 GMT"
],
"Content-Length": [
- "528"
+ "537"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -276,26 +276,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6cb7e9cd-c618-4d93-a1e4-1dad00e18f65"
+ "f373fa19-9ba7-4dbe-8fd0-25c81f108c97"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -312,22 +312,22 @@
"nosniff"
],
"x-ms-request-id": [
- "46e5a76f-5664-4581-8708-95b3866a51a0"
+ "b68f1c6a-927f-4503-9cf6-c398b642035d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11996"
],
"x-ms-correlation-request-id": [
- "ca13838a-dd6a-41fc-bc24-8363da8933fe"
+ "b68f1c6a-927f-4503-9cf6-c398b642035d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004234Z:ca13838a-dd6a-41fc-bc24-8363da8933fe"
+ "WESTUS:20220406T001355Z:b68f1c6a-927f-4503-9cf6-c398b642035d"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:34 GMT"
+ "Wed, 06 Apr 2022 00:13:54 GMT"
],
"Content-Length": [
"82"
@@ -343,22 +343,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac554f8c-6b7f-4acb-8183-a01ca156dd27"
+ "8bd9c137-e24c-4ec0-900c-9b05427bfcaf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -375,25 +375,25 @@
"nosniff"
],
"x-ms-request-id": [
- "7c4e4e1c-2058-4a66-9256-fdb77eec418f"
+ "a3f504ef-ae36-4850-a3df-d6ff1eeae557"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11998"
],
"x-ms-correlation-request-id": [
- "e629daf0-1793-4ca5-a830-f932f9443fea"
+ "a3f504ef-ae36-4850-a3df-d6ff1eeae557"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004230Z:e629daf0-1793-4ca5-a830-f932f9443fea"
+ "WESTUS:20220406T001350Z:a3f504ef-ae36-4850-a3df-d6ff1eeae557"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:30 GMT"
+ "Wed, 06 Apr 2022 00:13:50 GMT"
],
"Content-Length": [
- "628"
+ "637"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -402,26 +402,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps7695\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--60ee32f4a2ca601290f0cc2f}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps8876\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps554\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials--624cdb3a01234e10f00b7b76}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTI2NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9115\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"c290e57f-fb18-403c-97af-86fb58f6e612\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9812\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"a4144606-1fdb-4dec-ac82-368cc2746044\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d51beb8-af72-4100-b846-00e52d775094"
+ "5fe9102f-22be-4e02-a9db-4a225c091cf1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -438,7 +438,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAn0=\""
+ "\"AAAAAAAADsY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -447,7 +447,7 @@
"nosniff"
],
"x-ms-request-id": [
- "176d8772-313c-4c27-9f6b-b5b7baf115f5"
+ "f6983e27-53a1-4632-968a-27bf03bad47c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -456,16 +456,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "8625fd64-75f2-406d-94ef-2946782633a1"
+ "f6983e27-53a1-4632-968a-27bf03bad47c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004233Z:8625fd64-75f2-406d-94ef-2946782633a1"
+ "WESTUS:20220406T001354Z:f6983e27-53a1-4632-968a-27bf03bad47c"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:33 GMT"
+ "Wed, 06 Apr 2022 00:13:53 GMT"
],
"Content-Length": [
- "506"
+ "516"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -474,17 +474,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps1995\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9115\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--60ee32f9a2ca601290f0cc33}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5265\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9812\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials--624cdb4201234e10f00b7b7a}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps8876?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzODg3Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c90ad9db-2542-4ab5-b571-887dd1e07bc8"
+ "017238d8-fe60-45a8-ab01-07cdf2fbfc76"
],
"If-Match": [
"*"
@@ -493,10 +493,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -513,7 +513,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a138696a-9aec-4af6-b45f-a6b8848762da"
+ "6990dcbc-1fee-4096-a344-d54a8e53696e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -522,13 +522,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "d096a8eb-839b-44ad-aa9b-17a5beb59b70"
+ "6990dcbc-1fee-4096-a344-d54a8e53696e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004234Z:d096a8eb-839b-44ad-aa9b-17a5beb59b70"
+ "WESTUS:20220406T001355Z:6990dcbc-1fee-4096-a344-d54a8e53696e"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:34 GMT"
+ "Wed, 06 Apr 2022 00:13:54 GMT"
],
"Expires": [
"-1"
@@ -541,13 +541,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTI2NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82a73cc7-9b24-4491-9741-6b407457b528"
+ "41e421e2-3964-422f-a203-686db090009b"
],
"If-Match": [
"*"
@@ -556,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -576,7 +576,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ff3a1210-5c25-453a-8dc3-5f66993afefd"
+ "d6232d08-00f1-4261-a5e0-5d59988068cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -585,13 +585,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "62987fbc-36c0-46db-9e37-2bc8c037a900"
+ "d6232d08-00f1-4261-a5e0-5d59988068cb"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004235Z:62987fbc-36c0-46db-9e37-2bc8c037a900"
+ "WESTUS:20220406T001359Z:d6232d08-00f1-4261-a5e0-5d59988068cb"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:35 GMT"
+ "Wed, 06 Apr 2022 00:13:59 GMT"
],
"Expires": [
"-1"
@@ -604,22 +604,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/loggers/ps5265?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9sb2dnZXJzL3BzNTI2NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86b4ce2e-9b33-4efc-8a51-947027548372"
+ "924247c1-7358-4089-85a3-feb9e426fb2c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -636,22 +636,22 @@
"nosniff"
],
"x-ms-request-id": [
- "be64b200-51f3-48ff-bfec-3960a1efce0a"
+ "ed8a0a1f-7bd9-4be1-8501-a0e429e010c7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11995"
],
"x-ms-correlation-request-id": [
- "7e337b95-bd6e-4af2-ba00-9656407f8bee"
+ "ed8a0a1f-7bd9-4be1-8501-a0e429e010c7"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004235Z:7e337b95-bd6e-4af2-ba00-9656407f8bee"
+ "WESTUS:20220406T001359Z:ed8a0a1f-7bd9-4be1-8501-a0e429e010c7"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:35 GMT"
+ "Wed, 06 Apr 2022 00:13:59 GMT"
],
"Content-Length": [
"82"
@@ -667,22 +667,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "089371bb-7dd3-47d3-84ff-73abc02a4f9b"
+ "cbc34f5e-ccc6-43e8-9171-58b5cfc965f1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -699,25 +699,25 @@
"nosniff"
],
"x-ms-request-id": [
- "752df368-d48a-45dd-a2bf-7077d8304fbb"
+ "962e2c2a-90e0-40e2-b242-fda42ecdb39d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11994"
],
"x-ms-correlation-request-id": [
- "c74a6dd0-ee91-4c8b-b8ee-77d05919cd1f"
+ "962e2c2a-90e0-40e2-b242-fda42ecdb39d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004235Z:c74a6dd0-ee91-4c8b-b8ee-77d05919cd1f"
+ "WESTUS:20220406T001359Z:962e2c2a-90e0-40e2-b242-fda42ecdb39d"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:35 GMT"
+ "Wed, 06 Apr 2022 00:13:59 GMT"
],
"Content-Length": [
- "506"
+ "516"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -726,17 +726,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/60ee32f4a2ca601290f0cc2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"60ee32f4a2ca601290f0cc2e\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials--60ee32f4a2ca601290f0cc2f\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/624cdb3a01234e10f00b7b75\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"624cdb3a01234e10f00b7b75\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials--624cdb3a01234e10f00b7b76\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/60ee32f4a2ca601290f0cc2e?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzYwZWUzMmY0YTJjYTYwMTI5MGYwY2MyZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/624cdb3a01234e10f00b7b75?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy82MjRjZGIzYTAxMjM0ZTEwZjAwYjdiNzU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39e66576-c04f-4c44-914d-f36b3c640955"
+ "b467d4eb-60a3-4793-aea7-4ba3a2d8cac7"
],
"If-Match": [
"*"
@@ -745,10 +745,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -765,7 +765,7 @@
"nosniff"
],
"x-ms-request-id": [
- "276cf182-1c13-4efa-939c-010ee96ee874"
+ "ad2bae0a-c75e-4cef-8609-233c0d94a2fb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -774,13 +774,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "8d2ffa3d-982b-48b4-b279-fb3bcf4c7a40"
+ "ad2bae0a-c75e-4cef-8609-233c0d94a2fb"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210714T004235Z:8d2ffa3d-982b-48b4-b279-fb3bcf4c7a40"
+ "WESTUS:20220406T001359Z:ad2bae0a-c75e-4cef-8609-233c0d94a2fb"
],
"Date": [
- "Wed, 14 Jul 2021 00:42:35 GMT"
+ "Wed, 06 Apr 2022 00:13:59 GMT"
],
"Expires": [
"-1"
@@ -795,14 +795,14 @@
],
"Names": {
"": [
- "ps7695",
- "ps1995",
- "ps9214",
- "ps4560",
- "ps9115"
+ "ps8876",
+ "ps5265",
+ "ps1839",
+ "ps554",
+ "ps9812"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json
index 197dff7385b9..5f839fc13756 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a779ca3-3491-4f69-b3ee-4a8b5275446f"
+ "bed78c40-82d0-4786-a7b0-710f0d358ef3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAgg=\""
+ "\"AAAAAAAADcs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,25 +42,25 @@
"nosniff"
],
"x-ms-request-id": [
- "8fc7b9f4-a8b3-48e8-b0ac-1d5666ce57a0"
+ "d6bcf068-1ed1-49ec-bc0f-869530940c6a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-correlation-request-id": [
- "acacaef8-5b73-49f5-9dd5-f37b48ce9a44"
+ "d6bcf068-1ed1-49ec-bc0f-869530940c6a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001941Z:acacaef8-5b73-49f5-9dd5-f37b48ce9a44"
+ "WESTUS:20220401T190605Z:d6bcf068-1ed1-49ec-bc0f-869530940c6a"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:40 GMT"
+ "Fri, 01 Apr 2022 19:06:05 GMT"
],
"Content-Length": [
- "513"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,26 +69,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a779ca3-3491-4f69-b3ee-4a8b5275446f"
+ "bed78c40-82d0-4786-a7b0-710f0d358ef3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,7 +99,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAgg=\""
+ "\"AAAAAAAADcs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -108,25 +108,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d6a26ac0-4afd-4acc-929e-02b7b4327ed5"
+ "5355ab1f-8cf8-48e8-baa7-fa9c00eac43d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11999"
],
"x-ms-correlation-request-id": [
- "db3c6835-5eb1-4ca7-93ae-c63ac89c40f6"
+ "5355ab1f-8cf8-48e8-baa7-fa9c00eac43d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001941Z:db3c6835-5eb1-4ca7-93ae-c63ac89c40f6"
+ "WESTUS:20220401T190606Z:5355ab1f-8cf8-48e8-baa7-fa9c00eac43d"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:40 GMT"
+ "Fri, 01 Apr 2022 19:06:05 GMT"
],
"Content-Length": [
- "513"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -135,26 +135,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df94e2a7-4b77-43d1-9160-da7c3e5da960"
+ "2aa5109d-8428-4402-ab84-cf44170eb6ec"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,7 +165,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAgg=\""
+ "\"AAAAAAAADcs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -174,25 +174,25 @@
"nosniff"
],
"x-ms-request-id": [
- "da32f50a-e79d-4c3a-8eec-9692f7f28105"
+ "e49fc430-a54a-41ff-926f-a9592c7e55c8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11997"
],
"x-ms-correlation-request-id": [
- "9640000f-c127-43e0-8c6e-26d00e55fc45"
+ "e49fc430-a54a-41ff-926f-a9592c7e55c8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001942Z:9640000f-c127-43e0-8c6e-26d00e55fc45"
+ "WESTUS:20220401T190607Z:e49fc430-a54a-41ff-926f-a9592c7e55c8"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:41 GMT"
+ "Fri, 01 Apr 2022 19:06:07 GMT"
],
"Content-Length": [
- "513"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -201,26 +201,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4634f2c0-a9bf-4d23-a464-292d9d8de763"
+ "038becd3-b819-4bf9-82e2-2615267aad90"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,7 +231,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAiU=\""
+ "\"AAAAAAAADeg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -240,25 +240,25 @@
"nosniff"
],
"x-ms-request-id": [
- "5f645339-c6f6-4c48-ac98-62f2656cf53a"
+ "77e3beab-577a-495a-ae26-3fd8b9a97bfe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11993"
],
"x-ms-correlation-request-id": [
- "a4b90315-58fa-4e97-afff-85b1f2f112a1"
+ "77e3beab-577a-495a-ae26-3fd8b9a97bfe"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002016Z:a4b90315-58fa-4e97-afff-85b1f2f112a1"
+ "WESTUS:20220401T190639Z:77e3beab-577a-495a-ae26-3fd8b9a97bfe"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:15 GMT"
+ "Fri, 01 Apr 2022 19:06:38 GMT"
],
"Content-Length": [
- "513"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -267,26 +267,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32cb10de-938c-4f75-b0cc-61d82676149e"
+ "6fef40ed-7155-433f-8f2e-f81e0b466ce4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,7 +297,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAiU=\""
+ "\"AAAAAAAADeg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -306,25 +306,25 @@
"nosniff"
],
"x-ms-request-id": [
- "0315244f-b0ae-4cda-9633-16ea30d952e9"
+ "999ed139-0593-4dbd-b3d5-4f682fcf93d8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11992"
],
"x-ms-correlation-request-id": [
- "34cfcf5e-af5a-4d01-89a4-1d5e131d535f"
+ "999ed139-0593-4dbd-b3d5-4f682fcf93d8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002016Z:34cfcf5e-af5a-4d01-89a4-1d5e131d535f"
+ "WESTUS:20220401T190639Z:999ed139-0593-4dbd-b3d5-4f682fcf93d8"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:15 GMT"
+ "Fri, 01 Apr 2022 19:06:39 GMT"
],
"Content-Length": [
- "513"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,26 +333,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "011ffed4-f915-4af3-a363-9807327ca9a0"
+ "eb87d130-0930-42c6-89c9-056bdd646090"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -369,22 +369,22 @@
"nosniff"
],
"x-ms-request-id": [
- "7681799b-8795-4c4f-a731-629b6e2b54ee"
+ "aaae66ba-d56d-4715-89d2-8be2e65efe03"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11991"
],
"x-ms-correlation-request-id": [
- "8d80200d-ca50-432f-a8a1-abd9a40a09b1"
+ "aaae66ba-d56d-4715-89d2-8be2e65efe03"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002017Z:8d80200d-ca50-432f-a8a1-abd9a40a09b1"
+ "WESTUS:20220401T190640Z:aaae66ba-d56d-4715-89d2-8be2e65efe03"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:16 GMT"
+ "Fri, 01 Apr 2022 19:06:39 GMT"
],
"Content-Length": [
"97"
@@ -400,22 +400,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae6c2769-1423-44c7-a1ab-0ff5fad8c110"
+ "d8695175-7ce8-4aad-b713-cc82d4bf4f7f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -432,22 +432,22 @@
"nosniff"
],
"x-ms-request-id": [
- "9834367f-76ba-4e8c-812e-8aa020758c3c"
+ "71d71111-ffe6-40f7-8452-b8cfb450f728"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11990"
],
"x-ms-correlation-request-id": [
- "b220a65e-b541-46b0-97d5-2cce63e29379"
+ "71d71111-ffe6-40f7-8452-b8cfb450f728"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002017Z:b220a65e-b541-46b0-97d5-2cce63e29379"
+ "WESTUS:20220401T190641Z:71d71111-ffe6-40f7-8452-b8cfb450f728"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:16 GMT"
+ "Fri, 01 Apr 2022 19:06:40 GMT"
],
"Content-Length": [
"97"
@@ -463,22 +463,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps8650',properties/displayName)&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM4NjUwJyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders?$filter=substringof('ps6639',properties/displayName)&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzPyRmaWx0ZXI9c3Vic3RyaW5nb2YoJ3BzNjYzOScscHJvcGVydGllcy9kaXNwbGF5TmFtZSkmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a62906ab-16fc-4d12-ad96-76e2f2820c27"
+ "95f4b889-c815-4276-a3e5-d04c9f39886b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,25 +495,25 @@
"nosniff"
],
"x-ms-request-id": [
- "1ed11667-2e36-4282-8ddf-754c89de1a5f"
+ "6684432e-ddca-4771-905d-4da4e0154f5c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11998"
],
"x-ms-correlation-request-id": [
- "8710c062-4b66-4bf2-8a40-7a7875e8f278"
+ "6684432e-ddca-4771-905d-4da4e0154f5c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001941Z:8710c062-4b66-4bf2-8a40-7a7875e8f278"
+ "WESTUS:20220401T190607Z:6684432e-ddca-4771-905d-4da4e0154f5c"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:41 GMT"
+ "Fri, 01 Apr 2022 19:06:07 GMT"
],
"Content-Length": [
- "597"
+ "609"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -522,26 +522,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70faf1c7-2e10-44eb-a01b-0fce27e74b3c"
+ "69123b7a-7f43-4d5e-8933-6e6369b1787f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -558,25 +558,25 @@
"nosniff"
],
"x-ms-request-id": [
- "17eb1707-ae35-493e-810c-cd6b77d7072b"
+ "671f7afd-b1b6-4737-98da-1b8d42d6bf64"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11996"
],
"x-ms-correlation-request-id": [
- "1106b8cc-eba5-4062-bf70-df178643cc32"
+ "671f7afd-b1b6-4737-98da-1b8d42d6bf64"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001942Z:1106b8cc-eba5-4062-bf70-df178643cc32"
+ "WESTUS:20220401T190607Z:671f7afd-b1b6-4737-98da-1b8d42d6bf64"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:41 GMT"
+ "Fri, 01 Apr 2022 19:06:07 GMT"
],
"Content-Length": [
- "597"
+ "609"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -585,26 +585,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODAvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OS9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f21bd14-f744-4749-a5bb-685a079c7ca6"
+ "e67c0cef-b226-4d3d-8e9e-b69e2b923bae"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -615,7 +615,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAgg=\""
+ "\"AAAAAAAADcs=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -624,7 +624,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8c391d76-cb95-4e79-839d-64c864b7dd51"
+ "aca1aace-5d71-42d7-a970-e9ba853f11ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,13 +633,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a9901627-9a81-4ba3-99a7-45dae91f5feb"
+ "aca1aace-5d71-42d7-a970-e9ba853f11ab"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001942Z:a9901627-9a81-4ba3-99a7-45dae91f5feb"
+ "WESTUS:20220401T190608Z:aca1aace-5d71-42d7-a970-e9ba853f11ab"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:41 GMT"
+ "Fri, 01 Apr 2022 19:06:07 GMT"
],
"Content-Length": [
"21"
@@ -655,22 +655,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODAvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OS9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0cab0267-5c23-45ab-b470-f7bb8c32f3c1"
+ "85cd772b-5669-4145-aed5-9ec2abe852e3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -681,7 +681,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAiU=\""
+ "\"AAAAAAAADeg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -690,7 +690,7 @@
"nosniff"
],
"x-ms-request-id": [
- "91dfa8d8-58ce-47ba-a558-09eaf3b1c41f"
+ "115b3366-fcb8-47e4-bb85-c9430af8fa5d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -699,16 +699,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "15254abf-5830-4583-8b08-4736ab7343d7"
+ "115b3366-fcb8-47e4-bb85-c9430af8fa5d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002016Z:15254abf-5830-4583-8b08-4736ab7343d7"
+ "WESTUS:20220401T190640Z:115b3366-fcb8-47e4-bb85-c9430af8fa5d"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:16 GMT"
+ "Fri, 01 Apr 2022 19:06:39 GMT"
],
"Content-Length": [
- "25"
+ "24"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -717,26 +717,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps5908\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps723\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"openapi: 3.0.1\\r\\nservers:\\r\\n - url: 'https://developer.uspto.gov/ds-api'\\r\\ninfo:\\r\\n description: >-\\r\\n The Data Set API (DSAPI) allows the public users to discover and search\\r\\n USPTO exported data sets. This is a generic API that allows USPTO users to\\r\\n make any CSV based data files searchable through API. With the help of GET\\r\\n call, it returns the list of data fields that are searchable. With the help\\r\\n of POST call, data can be fetched based on the filters on the field names.\\r\\n Please note that POST call is used to search the actual data. The reason for\\r\\n the POST call is that it allows users to specify any complex search criteria\\r\\n without worry about the GET size limitations as well as encoding of the\\r\\n input parameters.\\r\\n version: 1.0.0\\r\\n title: USPTO Data Set API\\r\\n contact:\\r\\n name: Open Data Portal\\r\\n url: 'https://developer.uspto.gov'\\r\\n email: developer@uspto.gov\\r\\ntags:\\r\\n - name: metadata\\r\\n description: Find out about the data sets\\r\\n - name: search\\r\\n description: Search a data set\\r\\npaths:\\r\\n /:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n operationId: list-data-sets\\r\\n summary: List available data sets\\r\\n responses:\\r\\n '200':\\r\\n description: Returns a list of data sets\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: '#/components/schemas/dataSetList'\\r\\n example:\\r\\n {\\r\\n \\\"total\\\": 2,\\r\\n \\\"apis\\\": [\\r\\n {\\r\\n \\\"apiKey\\\": \\\"oa_citations\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/oa_citations/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/oa_citations.json\\\"\\r\\n },\\r\\n {\\r\\n \\\"apiKey\\\": \\\"cancer_moonshot\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/cancer_moonshot/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/cancer_moonshot.json\\\"\\r\\n }\\r\\n ]\\r\\n }\\r\\n /{dataset}/{version}/fields:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n summary: >-\\r\\n Provides the general information about the API and the list of fields\\r\\n that can be used to query the dataset.\\r\\n description: >-\\r\\n This GET API returns the list of all the searchable field names that are\\r\\n in the oa_citations. Please see the 'fields' attribute which returns an\\r\\n array of field names. Each field or a combination of fields can be\\r\\n searched using the syntax options shown below.\\r\\n operationId: list-searchable-fields\\r\\n parameters:\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset.'\\r\\n required: true\\r\\n example: \\\"oa_citations\\\"\\r\\n schema:\\r\\n type: string\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n example: \\\"v1\\\"\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: >-\\r\\n The dataset API for the given version is found and it is accessible\\r\\n to consume.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n '404':\\r\\n description: >-\\r\\n The combination of dataset name and version is not found in the\\r\\n system or it is not published yet to be consumed by public.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n /{dataset}/{version}/records:\\r\\n post:\\r\\n tags:\\r\\n - search\\r\\n summary: >-\\r\\n Provides search capability for the data set with the given search\\r\\n criteria.\\r\\n description: >-\\r\\n This API is based on Solr/Lucense Search. The data is indexed using\\r\\n SOLR. This GET API returns the list of all the searchable field names\\r\\n that are in the Solr Index. Please see the 'fields' attribute which\\r\\n returns an array of field names. Each field or a combination of fields\\r\\n can be searched using the Solr/Lucene Syntax. Please refer\\r\\n https://lucene.apache.org/core/3_6_2/queryparsersyntax.html#Overview for\\r\\n the query syntax. List of field names that are searchable can be\\r\\n determined using above GET api.\\r\\n operationId: perform-search\\r\\n parameters:\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: v1\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset. In this case, the default value is oa_citations'\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: oa_citations\\r\\n responses:\\r\\n '200':\\r\\n description: successful operation\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n additionalProperties:\\r\\n type: object\\r\\n '404':\\r\\n description: No matching record found for the given criteria.\\r\\n requestBody:\\r\\n content:\\r\\n application/x-www-form-urlencoded:\\r\\n schema:\\r\\n type: object\\r\\n properties:\\r\\n criteria:\\r\\n description: >-\\r\\n Uses Lucene Query Syntax in the format of\\r\\n propertyName:value, propertyName:[num1 TO num2] and date\\r\\n range format: propertyName:[yyyyMMdd TO yyyyMMdd]. In the\\r\\n response please see the 'docs' element which has the list of\\r\\n record objects. Each record structure would consist of all\\r\\n the fields and their corresponding values.\\r\\n type: string\\r\\n default: '*:*'\\r\\n start:\\r\\n description: Starting record number. Default value is 0.\\r\\n type: integer\\r\\n default: 0\\r\\n rows:\\r\\n description: >-\\r\\n Specify number of rows to be returned. If you run the search\\r\\n with default values, in the response you will see 'numFound'\\r\\n attribute which will tell the number of records available in\\r\\n the dataset.\\r\\n type: integer\\r\\n default: 100\\r\\n required:\\r\\n - criteria\\r\\ncomponents:\\r\\n schemas:\\r\\n dataSetList:\\r\\n type: object\\r\\n properties:\\r\\n total:\\r\\n type: integer\\r\\n apis:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n properties:\\r\\n apiKey:\\r\\n type: string\\r\\n description: To be used as a dataset parameter value\\r\\n apiVersionNumber:\\r\\n type: string\\r\\n description: To be used as a version parameter value\\r\\n apiUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: \\\"The URL describing the dataset's fields\\\"\\r\\n apiDocumentationUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: A URL to the API console for each API\",\r\n \"format\": \"openapi\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "814a8b2a-0dbb-428c-ad13-779864401219"
+ "458eeaf6-50f8-479a-8ed8-f9c607b3e958"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -753,7 +753,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01&asyncId=60ecdc1ea2ca601290f0cbde&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01&asyncId=62474d20217d200d902d7e62&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -762,22 +762,22 @@
"nosniff"
],
"x-ms-request-id": [
- "d4e1acf1-b507-4f51-a8c0-e880ff763f77"
+ "206e5f13-0135-48d9-8d4d-092153c2adb1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1198"
],
"x-ms-correlation-request-id": [
- "adaf2e2d-231c-4dc8-a9b9-93e0be1d32ba"
+ "206e5f13-0135-48d9-8d4d-092153c2adb1"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001942Z:adaf2e2d-231c-4dc8-a9b9-93e0be1d32ba"
+ "WESTUS:20220401T190608Z:206e5f13-0135-48d9-8d4d-092153c2adb1"
],
"Date": [
- "Tue, 13 Jul 2021 00:19:41 GMT"
+ "Fri, 01 Apr 2022 19:06:07 GMT"
],
"Expires": [
"-1"
@@ -790,19 +790,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01&asyncId=60ecdc1ea2ca601290f0cbde&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MGVjZGMxZWEyY2E2MDEyOTBmMGNiZGUmYXN5bmNDb2RlPTIwMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01&asyncId=62474d20217d200d902d7e62&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzRkMjAyMTdkMjAwZDkwMmQ3ZTYyJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "814a8b2a-0dbb-428c-ad13-779864401219"
+ "458eeaf6-50f8-479a-8ed8-f9c607b3e958"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -813,7 +813,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAgk=\""
+ "\"AAAAAAAADcw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -822,25 +822,25 @@
"nosniff"
],
"x-ms-request-id": [
- "2f8de94d-2b44-4eb0-865a-e14b59949249"
+ "3e79e509-9698-48f7-93cf-21f97a04d2de"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11995"
],
"x-ms-correlation-request-id": [
- "41b770f7-209c-4bf7-b112-1554ed0b0673"
+ "3e79e509-9698-48f7-93cf-21f97a04d2de"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002012Z:41b770f7-209c-4bf7-b112-1554ed0b0673"
+ "WESTUS:20220401T190638Z:3e79e509-9698-48f7-93cf-21f97a04d2de"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:11 GMT"
+ "Fri, 01 Apr 2022 19:06:37 GMT"
],
"Content-Length": [
- "1381"
+ "1536"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -849,26 +849,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6947\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1771\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "814a8b2a-0dbb-428c-ad13-779864401219"
+ "458eeaf6-50f8-479a-8ed8-f9c607b3e958"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -879,7 +879,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAgk=\""
+ "\"AAAAAAAADcw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -888,25 +888,25 @@
"nosniff"
],
"x-ms-request-id": [
- "3135e419-34f3-43d2-92cb-01343c2f5d1e"
+ "0e141031-7ab9-46fb-8f66-7c1c676ecd26"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11994"
],
"x-ms-correlation-request-id": [
- "f6580773-7021-4e7f-b3ae-0eabce3e149b"
+ "0e141031-7ab9-46fb-8f66-7c1c676ecd26"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002012Z:f6580773-7021-4e7f-b3ae-0eabce3e149b"
+ "WESTUS:20220401T190638Z:0e141031-7ab9-46fb-8f66-7c1c676ecd26"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:11 GMT"
+ "Fri, 01 Apr 2022 19:06:37 GMT"
],
"Content-Length": [
- "1381"
+ "1536"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -915,17 +915,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6947\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1771\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"contact\": {\r\n \"name\": \"Open Data Portal\",\r\n \"url\": \"https://developer.uspto.gov/\",\r\n \"email\": \"developer@uspto.gov\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947%3Brev%3D1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771%3Brev%3D1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MSUzQnJldiUzRDE/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"ps380\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"ps6699\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"Https\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "45b02ac4-9058-442b-bc19-67d3f747eb34"
+ "1170b65b-b610-45b5-9527-bb626c3baefe"
],
"If-Match": [
"*"
@@ -934,16 +934,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1275"
+ "1276"
]
},
"ResponseHeaders": {
@@ -954,7 +954,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAiA=\""
+ "\"AAAAAAAADeM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -963,25 +963,25 @@
"nosniff"
],
"x-ms-request-id": [
- "3d57d2b1-73dd-4318-8a85-312d5f56f4af"
+ "65d15393-bf1f-40c5-80ef-d2f586645723"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1197"
],
"x-ms-correlation-request-id": [
- "6733c043-4381-4aeb-ad10-75e7e9284742"
+ "65d15393-bf1f-40c5-80ef-d2f586645723"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002016Z:6733c043-4381-4aeb-ad10-75e7e9284742"
+ "WESTUS:20220401T190639Z:65d15393-bf1f-40c5-80ef-d2f586645723"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:15 GMT"
+ "Fri, 01 Apr 2022 19:06:38 GMT"
],
"Content-Length": [
- "1518"
+ "1529"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -990,17 +990,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6947\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"ps380\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1771\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"ps6699\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps5908\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps723\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4634f2c0-a9bf-4d23-a464-292d9d8de763"
+ "038becd3-b819-4bf9-82e2-2615267aad90"
],
"If-Match": [
"*"
@@ -1009,16 +1009,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "58"
+ "57"
]
},
"ResponseHeaders": {
@@ -1029,7 +1029,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAiU=\""
+ "\"AAAAAAAADeg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1038,25 +1038,25 @@
"nosniff"
],
"x-ms-request-id": [
- "50dedf92-13e8-46f6-9828-df07244b025a"
+ "88f73d4b-c9ff-44ee-9411-f93ab40ca620"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1196"
],
"x-ms-correlation-request-id": [
- "ea7f2ad8-259e-487e-a169-f2a6321f5696"
+ "88f73d4b-c9ff-44ee-9411-f93ab40ca620"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002016Z:ea7f2ad8-259e-487e-a169-f2a6321f5696"
+ "WESTUS:20220401T190639Z:88f73d4b-c9ff-44ee-9411-f93ab40ca620"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:15 GMT"
+ "Fri, 01 Apr 2022 19:06:38 GMT"
],
"Content-Length": [
- "544"
+ "555"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1065,17 +1065,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps380\",\r\n \"properties\": {\r\n \"displayName\": \"ps8650\",\r\n \"description\": \"ps1765\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9891\",\r\n \"clientSecret\": \"ps5908\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps6699\",\r\n \"properties\": {\r\n \"displayName\": \"ps6639\",\r\n \"description\": \"ps4660\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps8166\",\r\n \"clientSecret\": \"ps723\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea687715-314e-43f8-9cc5-b084520b3cd6"
+ "a22d0544-4f32-49cc-8e03-7715d277f6b0"
],
"If-Match": [
"*"
@@ -1084,10 +1084,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1104,7 +1104,7 @@
"nosniff"
],
"x-ms-request-id": [
- "226a405e-d1c6-45ce-879f-f8242fffb9ec"
+ "67133dc2-5665-4ceb-b7ba-07540959ce27"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1113,13 +1113,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "63854f4b-29be-40fe-80e3-de8f117a9bfd"
+ "67133dc2-5665-4ceb-b7ba-07540959ce27"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002017Z:63854f4b-29be-40fe-80e3-de8f117a9bfd"
+ "WESTUS:20220401T190640Z:67133dc2-5665-4ceb-b7ba-07540959ce27"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:16 GMT"
+ "Fri, 01 Apr 2022 19:06:39 GMT"
],
"Expires": [
"-1"
@@ -1132,13 +1132,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?deleteRevisions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/ps1771?deleteRevisions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL3BzMTc3MT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5819bf13-7829-4abb-8478-67ff816fa046"
+ "9030cf51-1b23-48bb-90d7-8ce5408b4a89"
],
"If-Match": [
"*"
@@ -1147,10 +1147,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1167,7 +1167,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d4e52a15-e420-4a0a-ab64-0c923080248b"
+ "76655d7f-39b6-4153-9042-fd9d77af6820"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1176,13 +1176,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "5fa5ba48-894a-4815-83c5-fbc02c70d29f"
+ "76655d7f-39b6-4153-9042-fd9d77af6820"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002017Z:5fa5ba48-894a-4815-83c5-fbc02c70d29f"
+ "WESTUS:20220401T190640Z:76655d7f-39b6-4153-9042-fd9d77af6820"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:16 GMT"
+ "Fri, 01 Apr 2022 19:06:40 GMT"
],
"Expires": [
"-1"
@@ -1192,13 +1192,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30779279-6c12-45b5-93e5-4e19d8d0b937"
+ "75ead7eb-c486-4b73-adf8-ced4e7a058c5"
],
"If-Match": [
"*"
@@ -1207,10 +1207,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1227,7 +1227,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c28fe76d-b8b1-45d7-afa1-1a324aa8c39c"
+ "a91ccacb-93ff-4999-90f4-00f760610362"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1236,13 +1236,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "4d02c4ee-3075-4665-9edc-565d8328c1ab"
+ "a91ccacb-93ff-4999-90f4-00f760610362"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002017Z:4d02c4ee-3075-4665-9edc-565d8328c1ab"
+ "WESTUS:20220401T190640Z:a91ccacb-93ff-4999-90f4-00f760610362"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:16 GMT"
+ "Fri, 01 Apr 2022 19:06:39 GMT"
],
"Expires": [
"-1"
@@ -1255,13 +1255,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/openidConnectProviders/ps6699?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL3BzNjY5OT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66251535-36fe-423d-801f-af04eaece83f"
+ "8543642a-80bb-44f1-a36c-6d6bcdccb87c"
],
"If-Match": [
"*"
@@ -1270,10 +1270,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1290,7 +1290,7 @@
"nosniff"
],
"x-ms-request-id": [
- "1e617ea9-7851-4d77-aa8c-40164da170bc"
+ "53e20865-1448-4d41-b8bc-435acbea0216"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1299,13 +1299,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "c112413f-65b6-463b-9118-3dd7c2b71719"
+ "53e20865-1448-4d41-b8bc-435acbea0216"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T002017Z:c112413f-65b6-463b-9118-3dd7c2b71719"
+ "WESTUS:20220401T190641Z:53e20865-1448-4d41-b8bc-435acbea0216"
],
"Date": [
- "Tue, 13 Jul 2021 00:20:16 GMT"
+ "Fri, 01 Apr 2022 19:06:40 GMT"
],
"Expires": [
"-1"
@@ -1317,15 +1317,15 @@
],
"Names": {
"": [
- "ps380",
- "ps6947",
- "ps8650",
- "ps9891",
- "ps1765",
- "ps5908"
+ "ps6699",
+ "ps1771",
+ "ps6639",
+ "ps8166",
+ "ps4660",
+ "ps723"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json
index 05da3710a8b5..00171e0b2d8e 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/JGZpbHRlcj1wcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lJTIwZXElMjAnRWNobyUyMEFQSScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?$filter=properties/displayName%20eq%20'Echo%20API'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ0VjaG8lMjBBUEknJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac5d5234-8085-4430-828f-2172c190c63e"
+ "ec33a44c-2360-440a-8878-05dbb469ec7e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "137d70b9-51f8-4f9c-a68c-ae834a3a2111"
+ "c248158e-6c95-43e4-9988-4dee79529f37"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "51ef653a-2548-4bf2-9759-4c8925049ce9"
+ "c248158e-6c95-43e4-9988-4dee79529f37"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001409Z:51ef653a-2548-4bf2-9759-4c8925049ce9"
+ "WESTUS:20220406T000434Z:c248158e-6c95-43e4-9988-4dee79529f37"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:09 GMT"
+ "Wed, 06 Apr 2022 00:04:33 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d4a3dbc-721a-4b75-963c-6a119731a979"
+ "515ce606-b628-4e2c-b16c-939a2da80fee"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,7 +96,7 @@
"nosniff"
],
"x-ms-request-id": [
- "21177d39-4262-4a40-8a35-2dc28d827d54"
+ "cf09701c-1843-4c31-b8f9-ff41fe518733"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +105,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "63e2dab1-5595-4819-bbb7-c51328157b38"
+ "cf09701c-1843-4c31-b8f9-ff41fe518733"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001409Z:63e2dab1-5595-4819-bbb7-c51328157b38"
+ "WESTUS:20220406T000434Z:cf09701c-1843-4c31-b8f9-ff41fe518733"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:09 GMT"
+ "Wed, 06 Apr 2022 00:04:34 GMT"
],
"Content-Length": [
- "7816"
+ "7876"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f590fca4-8632-48af-99f3-f1ece3d8d424"
+ "20fc1011-bad7-4378-8426-783480a21805"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -153,7 +153,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/5o=\""
+ "\"AAAAAAAAC1c=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -162,7 +162,7 @@
"nosniff"
],
"x-ms-request-id": [
- "aa405bf2-805e-4a93-b27a-8e95b396ca76"
+ "a72655e8-bb44-46ac-a1a6-63d1e1be9dca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "27646565-8698-4731-a55a-8c0bc84f69de"
+ "a72655e8-bb44-46ac-a1a6-63d1e1be9dca"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001411Z:27646565-8698-4731-a55a-8c0bc84f69de"
+ "WESTUS:20220406T000435Z:a72655e8-bb44-46ac-a1a6-63d1e1be9dca"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:10 GMT"
+ "Wed, 06 Apr 2022 00:04:34 GMT"
],
"Content-Length": [
- "1269"
+ "1648"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -189,26 +189,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/modify-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/modify-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3b209b0-9726-476b-81e0-d4a0a7bdbbd3"
+ "650d4e98-a067-489d-93c4-5f3f683d27ef"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -219,7 +219,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjQ=\""
+ "\"AAAAAAAACQU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -228,7 +228,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9c76b0bd-47f5-4d02-a4fd-0a9729fb7c7a"
+ "b4380000-92f1-4cd3-a681-ca697410dd70"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +237,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "f69c1d71-885a-44d5-9388-1450f9b34baf"
+ "b4380000-92f1-4cd3-a681-ca697410dd70"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001411Z:f69c1d71-885a-44d5-9388-1450f9b34baf"
+ "WESTUS:20220406T000435Z:b4380000-92f1-4cd3-a681-ca697410dd70"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:11 GMT"
+ "Wed, 06 Apr 2022 00:04:34 GMT"
],
"Content-Length": [
- "892"
+ "902"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,26 +255,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/remove-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZW1vdmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/remove-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76e26efc-8181-4c10-9681-08fb9623e4bb"
+ "3bc80a23-3b46-49ca-a6ef-e74ae881ed44"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -285,7 +285,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjY=\""
+ "\"AAAAAAAACQc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -294,7 +294,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bb8a0ab2-7392-4d01-86c7-e877257f9ddb"
+ "38cbe579-69bc-4e38-9004-578d30cb3a6a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -303,16 +303,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "11954b36-7065-4a7d-b288-2a4c303c14a7"
+ "38cbe579-69bc-4e38-9004-578d30cb3a6a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001411Z:11954b36-7065-4a7d-b288-2a4c303c14a7"
+ "WESTUS:20220406T000435Z:38cbe579-69bc-4e38-9004-578d30cb3a6a"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:11 GMT"
+ "Wed, 06 Apr 2022 00:04:34 GMT"
],
"Content-Length": [
- "902"
+ "912"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,26 +321,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-header-only?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1oZWFkZXItb25seT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-header-only?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d321d3c-39aa-4025-ad36-bc6bd0282791"
+ "cedf662b-8444-4928-a336-a5148436c66e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,7 +351,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjc=\""
+ "\"AAAAAAAACQg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -360,7 +360,7 @@
"nosniff"
],
"x-ms-request-id": [
- "93c7dae4-b07a-461d-9ea9-0e4cd3f194bb"
+ "eaf8c5e1-c5e7-4947-af68-94896f66d6fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -369,16 +369,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "5fd33ed2-fdb6-4291-a3b9-47e644f7af98"
+ "eaf8c5e1-c5e7-4947-af68-94896f66d6fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001411Z:5fd33ed2-fdb6-4291-a3b9-47e644f7af98"
+ "WESTUS:20220406T000435Z:eaf8c5e1-c5e7-4947-af68-94896f66d6fe"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:11 GMT"
+ "Wed, 06 Apr 2022 00:04:35 GMT"
],
"Content-Length": [
- "897"
+ "907"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -387,26 +387,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c863a32b-ee25-42c4-ad93-9f63b188d7cf"
+ "92934c18-d72f-40d0-86b0-f87715d385c4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -417,7 +417,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjI=\""
+ "\"AAAAAAAACQM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -426,7 +426,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ff2c9908-8e69-4828-a440-f17382d51fc3"
+ "1bde4907-face-400b-8fa5-cb5a47e7b0c9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,16 +435,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "9ef70c6b-299c-4872-83b9-f6200c1875a4"
+ "1bde4907-face-400b-8fa5-cb5a47e7b0c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001411Z:9ef70c6b-299c-4872-83b9-f6200c1875a4"
+ "WESTUS:20220406T000435Z:1bde4907-face-400b-8fa5-cb5a47e7b0c9"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:11 GMT"
+ "Wed, 06 Apr 2022 00:04:35 GMT"
],
"Content-Length": [
- "1476"
+ "1486"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -453,26 +453,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource-cached?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1yZXNvdXJjZS1jYWNoZWQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource-cached?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e9be6dd-5c69-4cbe-b1e8-c7f8db967a8c"
+ "436bf81a-d231-44e8-91eb-959f542c66d5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -483,7 +483,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACjM=\""
+ "\"AAAAAAAACQQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -492,7 +492,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bf1c4c9f-84bb-4f04-9d6e-d36a8a596753"
+ "4fbc91bd-abf5-4797-8bc3-6d3667961438"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,16 +501,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "65c0c33d-269f-46cd-a2a2-6af55506b4cc"
+ "4fbc91bd-abf5-4797-8bc3-6d3667961438"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001411Z:65c0c33d-269f-46cd-a2a2-6af55506b4cc"
+ "WESTUS:20220406T000436Z:4fbc91bd-abf5-4797-8bc3-6d3667961438"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:11 GMT"
+ "Wed, 06 Apr 2022 00:04:35 GMT"
],
"Content-Length": [
- "1553"
+ "1563"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -519,32 +519,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps9983\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5871\",\r\n \"description\": \"ps6468\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6459\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6459\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1800\",\r\n \"description\": \"ps6152\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps2860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps2860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7318\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps1876\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7306\",\r\n \"sample\": \"ps772\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps2163\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": [],\r\n \"examples\": {}\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": [],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps2971\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps1358\",\r\n \"description\": \"ps9153\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1092\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1092\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1256\",\r\n \"description\": \"ps5034\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps8090\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps8090\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"typeName\": \"the type name\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2440\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps9983\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps8496\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "803bdafe-7475-421b-b131-cd05358dfa1e"
+ "ac26fe05-56c9-4812-a3b4-d143bd97d365"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1565"
+ "2194"
]
},
"ResponseHeaders": {
@@ -555,7 +555,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAJ8=\""
+ "\"AAAAAAAADrE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -564,7 +564,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5422f416-482c-4e37-91c4-f935e417d2f6"
+ "7e51e661-2145-45b0-8217-742965d68cd7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,16 +573,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "77ed6455-ed17-4b4a-a862-3518e1f03fcc"
+ "7e51e661-2145-45b0-8217-742965d68cd7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001414Z:77ed6455-ed17-4b4a-a862-3518e1f03fcc"
+ "WESTUS:20220406T000437Z:7e51e661-2145-45b0-8217-742965d68cd7"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:14 GMT"
+ "Wed, 06 Apr 2022 00:04:36 GMT"
],
"Content-Length": [
- "2120"
+ "2443"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -591,17 +591,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps8482\",\r\n \"properties\": {\r\n \"displayName\": \"ps2163\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps9983\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5871\",\r\n \"description\": \"ps6468\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6459\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6459\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1800\",\r\n \"description\": \"ps6152\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps2860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps2860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps7318\"\r\n }\r\n },\r\n \"generatedSample\": \"ps7318\",\r\n \"sample\": \"ps7318\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps1876\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7306\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps772\"\r\n }\r\n },\r\n \"generatedSample\": \"ps772\",\r\n \"sample\": \"ps772\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps5110\",\r\n \"properties\": {\r\n \"displayName\": \"ps8496\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"values\": [],\r\n \"examples\": {}\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"values\": [],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps2971\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps1358\",\r\n \"description\": \"ps9153\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1092\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1092\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps1256\",\r\n \"description\": \"ps5034\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps8090\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps8090\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n },\r\n \"typeName\": \"the type name\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2440\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps9983\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps3806\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps8473\",\r\n \"description\": \"ps2672\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps5490\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps5490\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8687\",\r\n \"description\": \"ps361\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9144\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9144\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7650\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1198\",\r\n \"sample\": \"ps9589\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps6790\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": [],\r\n \"examples\": {}\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": [],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps5684\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4561\",\r\n \"description\": \"ps5466\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1233\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1233\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps6413\",\r\n \"description\": \"ps5409\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1566\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1566\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7051\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps889\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps5072\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d095914f-3977-4957-868b-f580e155fce5"
+ "5b4a5b3c-1078-4100-8f68-7850a5b22fe6"
],
"If-Match": [
"*"
@@ -610,16 +610,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1594"
+ "2182"
]
},
"ResponseHeaders": {
@@ -630,7 +630,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAKI=\""
+ "\"AAAAAAAADrQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -639,7 +639,7 @@
"nosniff"
],
"x-ms-request-id": [
- "eec083f7-6df6-417e-98c2-1a813a3f3d00"
+ "a66935f1-4608-48fd-a47b-0a3bf0e61ddb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -648,16 +648,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "4ef3391f-af27-40eb-9428-0c69879f9653"
+ "a66935f1-4608-48fd-a47b-0a3bf0e61ddb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001415Z:4ef3391f-af27-40eb-9428-0c69879f9653"
+ "WESTUS:20220406T000437Z:a66935f1-4608-48fd-a47b-0a3bf0e61ddb"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:15 GMT"
+ "Wed, 06 Apr 2022 00:04:37 GMT"
],
"Content-Length": [
- "2151"
+ "2431"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -666,26 +666,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps8482\",\r\n \"properties\": {\r\n \"displayName\": \"ps6790\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps3806\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps8473\",\r\n \"description\": \"ps2672\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps5490\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps5490\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8687\",\r\n \"description\": \"ps361\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9144\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9144\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps7650\"\r\n }\r\n },\r\n \"generatedSample\": \"ps7650\",\r\n \"sample\": \"ps7650\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1198\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"ps9589\"\r\n }\r\n },\r\n \"generatedSample\": \"ps9589\",\r\n \"sample\": \"ps9589\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps5110\",\r\n \"properties\": {\r\n \"displayName\": \"ps5072\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"values\": [],\r\n \"examples\": {}\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"values\": [],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps5684\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4561\",\r\n \"description\": \"ps5466\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1233\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1233\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps6413\",\r\n \"description\": \"ps5409\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1566\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1566\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7051\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps889\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d095914f-3977-4957-868b-f580e155fce5"
+ "5b4a5b3c-1078-4100-8f68-7850a5b22fe6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -696,7 +696,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAKI=\""
+ "\"AAAAAAAADrQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -705,7 +705,7 @@
"nosniff"
],
"x-ms-request-id": [
- "4eca8998-1ffb-4b17-b56b-92d7a930746b"
+ "ad4b4d14-8084-427c-9fff-48a894ac5e53"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -714,16 +714,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "dd97b938-c059-4031-a070-4cd115e6f2b7"
+ "ad4b4d14-8084-427c-9fff-48a894ac5e53"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001415Z:dd97b938-c059-4031-a070-4cd115e6f2b7"
+ "WESTUS:20220406T000437Z:ad4b4d14-8084-427c-9fff-48a894ac5e53"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:15 GMT"
+ "Wed, 06 Apr 2022 00:04:37 GMT"
],
"Content-Length": [
- "1887"
+ "2485"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -732,26 +732,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps8482\",\r\n \"properties\": {\r\n \"displayName\": \"ps6790\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps3806\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps8473\",\r\n \"description\": \"ps2672\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps5490\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps5490\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8687\",\r\n \"description\": \"ps361\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps9144\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps9144\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7650\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2400\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1198\",\r\n \"sample\": \"ps9589\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps5110\",\r\n \"properties\": {\r\n \"displayName\": \"ps5072\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"examples\": {}\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"description\": \"ps5684\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps4561\",\r\n \"description\": \"ps5466\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1233\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1233\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps6413\",\r\n \"description\": \"ps5409\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps1566\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps1566\"\r\n ],\r\n \"examples\": {}\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7051\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps889\",\r\n \"examples\": {\r\n \"default\": {\r\n \"summary\": \"default\",\r\n \"description\": \"My default request example\",\r\n \"value\": \"default\",\r\n \"externalValue\": \"https://contoso.com\"\r\n }\r\n }\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da23cae1-16c3-4a71-a989-205437aaee65"
+ "e620f0cf-e4e5-4b2e-977f-921361b957dd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -768,7 +768,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bb75fd29-3764-4119-bfed-b37d7bead805"
+ "adc09c73-3d9a-4cd6-9f0b-f8e76f8e7165"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -777,13 +777,13 @@
"11990"
],
"x-ms-correlation-request-id": [
- "38191adf-f31f-4b62-8bc1-4b85a725bb59"
+ "adc09c73-3d9a-4cd6-9f0b-f8e76f8e7165"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001416Z:38191adf-f31f-4b62-8bc1-4b85a725bb59"
+ "WESTUS:20220406T000438Z:adc09c73-3d9a-4cd6-9f0b-f8e76f8e7165"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:16 GMT"
+ "Wed, 06 Apr 2022 00:04:37 GMT"
],
"Content-Length": [
"85"
@@ -799,13 +799,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps8482?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczg0ODI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/ps5110?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcHM1MTEwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6426956f-38d9-49f6-bb70-6821f12d784c"
+ "df7d6d72-26a4-497f-a6d9-c22edb3a09ea"
],
"If-Match": [
"*"
@@ -814,10 +814,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -834,7 +834,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e908e1dc-5377-4b48-82cc-2aed28eaa69f"
+ "708bbc65-b54f-43da-be0e-e3c951297080"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -843,13 +843,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "0033455f-ebf3-40e5-9bce-fc8831226864"
+ "708bbc65-b54f-43da-be0e-e3c951297080"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001416Z:0033455f-ebf3-40e5-9bce-fc8831226864"
+ "WESTUS:20220406T000438Z:708bbc65-b54f-43da-be0e-e3c951297080"
],
"Date": [
- "Tue, 13 Jul 2021 00:14:16 GMT"
+ "Wed, 06 Apr 2022 00:04:37 GMT"
],
"Expires": [
"-1"
@@ -864,36 +864,35 @@
],
"Names": {
"": [
- "ps8482",
- "ps2163",
+ "ps5110",
+ "ps8496",
+ "ps2971",
+ "ps9729",
+ "ps1256",
+ "ps5034",
+ "ps8090",
+ "ps1358",
+ "ps9153",
+ "ps1092",
+ "ps2440",
"ps9983",
- "ps7992",
- "ps1800",
- "ps6152",
- "ps2860",
- "ps5871",
- "ps6468",
- "ps6459",
- "ps7318",
- "ps1876",
- "ps7306",
- "ps772",
- "ps6790",
- "ps3806",
- "ps5899",
- "ps8687",
- "ps361",
- "ps9144",
- "ps8473",
- "ps2672",
- "ps5490",
- "ps7650",
- "ps2400",
- "ps1198",
- "ps9589"
+ "ps2321",
+ "ps5072",
+ "ps5684",
+ "ps4935",
+ "ps6413",
+ "ps5409",
+ "ps1566",
+ "ps4561",
+ "ps5466",
+ "ps1233",
+ "ps3081",
+ "ps7051",
+ "ps889",
+ "ps5848"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json
index 245fd88031e2..ccaf0475f017 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n bbyby\\r\\n \\r\\n \\r\\n \\r\\n xxbbcczc\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "299d7b5f-8748-4faa-8fc1-ae54238abc7f"
+ "67aade69-5f98-403e-8e68-5933675b612e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1c=\""
+ "\"AAAAAAAACxE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,25 +42,25 @@
"nosniff"
],
"x-ms-request-id": [
- "9de4d8a1-1809-4c40-ada4-875cebeec196"
+ "9bbbd278-1ba7-45e5-be01-68f3088c5b64"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "dead2a2c-934e-458c-975b-3df532dfc666"
+ "9bbbd278-1ba7-45e5-be01-68f3088c5b64"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001041Z:dead2a2c-934e-458c-975b-3df532dfc666"
+ "WESTCENTRALUS:20220401T185726Z:9bbbd278-1ba7-45e5-be01-68f3088c5b64"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:41 GMT"
+ "Fri, 01 Apr 2022 18:57:26 GMT"
],
"Content-Length": [
- "890"
+ "900"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -69,26 +69,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"bbybyxxbbcczc\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "324da355-4b0a-4a49-9f0f-a0e79cb660f3"
+ "4751a654-80e1-4b93-a597-082210a4719a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -105,7 +105,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/3s=\""
+ "\"AAAAAAAACzg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,25 +114,25 @@
"nosniff"
],
"x-ms-request-id": [
- "ec9a5fca-01ac-4b40-b24d-e52f2d4d3e32"
+ "fbc28ec2-c367-44de-82a5-06c5be70a2a1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1195"
],
"x-ms-correlation-request-id": [
- "62cc959c-d993-4dce-8970-7967c6293e3b"
+ "fbc28ec2-c367-44de-82a5-06c5be70a2a1"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:62cc959c-d993-4dce-8970-7967c6293e3b"
+ "WESTCENTRALUS:20220401T185734Z:fbc28ec2-c367-44de-82a5-06c5be70a2a1"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:47 GMT"
+ "Fri, 01 Apr 2022 18:57:34 GMT"
],
"Content-Length": [
- "890"
+ "900"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -141,26 +141,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06b24505-4044-478d-93ac-2b1c297a9adb"
+ "8f6ab85f-d3dc-4fdf-8a28-f0abe4405e5d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -171,7 +171,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/1c=\""
+ "\"AAAAAAAACxE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -180,25 +180,25 @@
"nosniff"
],
"x-ms-request-id": [
- "ad35f46d-d9e9-4229-8a6d-507b89862df5"
+ "f8693ded-2d4c-4e96-9ed8-00c0898da5d3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "20605369-8aed-4c63-bc99-19b98e0b259d"
+ "f8693ded-2d4c-4e96-9ed8-00c0898da5d3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001041Z:20605369-8aed-4c63-bc99-19b98e0b259d"
+ "WESTCENTRALUS:20220401T185726Z:f8693ded-2d4c-4e96-9ed8-00c0898da5d3"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:41 GMT"
+ "Fri, 01 Apr 2022 18:57:26 GMT"
],
"Content-Length": [
- "890"
+ "900"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -207,26 +207,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b37e2ef3-ca24-4e67-81f8-100aefd2bbdc"
+ "363c0729-b345-4802-bc16-b5c4925cf0ed"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -243,22 +243,22 @@
"nosniff"
],
"x-ms-request-id": [
- "37a10053-228e-434d-bc6f-9b3c0b42a370"
+ "9918a537-9d1a-4c51-b183-53054eabb82d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "61e37c6e-cf82-4b84-82d4-a88f4a8a4b3f"
+ "9918a537-9d1a-4c51-b183-53054eabb82d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001042Z:61e37c6e-cf82-4b84-82d4-a88f4a8a4b3f"
+ "WESTCENTRALUS:20220401T185727Z:9918a537-9d1a-4c51-b183-53054eabb82d"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:42 GMT"
+ "Fri, 01 Apr 2022 18:57:27 GMT"
],
"Content-Length": [
"97"
@@ -274,22 +274,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62998a98-76fb-425c-9099-696722fdd725"
+ "02f28e14-13fa-44a6-b641-ab2073858b0f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -300,7 +300,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/3s=\""
+ "\"AAAAAAAACzg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,25 +309,25 @@
"nosniff"
],
"x-ms-request-id": [
- "d4110279-3797-4eff-9dfc-02bd62be6d9e"
+ "ebf93301-484d-49b7-8d2e-6c4acd37fce9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11987"
],
"x-ms-correlation-request-id": [
- "78f6fee5-3eb8-4204-9430-97ee62dbb705"
+ "ebf93301-484d-49b7-8d2e-6c4acd37fce9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:78f6fee5-3eb8-4204-9430-97ee62dbb705"
+ "WESTCENTRALUS:20220401T185734Z:ebf93301-484d-49b7-8d2e-6c4acd37fce9"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:47 GMT"
+ "Fri, 01 Apr 2022 18:57:34 GMT"
],
"Content-Length": [
- "890"
+ "900"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -336,26 +336,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32802a01-e2f2-4a6a-8a8d-4a7709d5014d"
+ "d2c99ec0-592d-43cd-9e2f-35c22a649c26"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -372,22 +372,22 @@
"nosniff"
],
"x-ms-request-id": [
- "a722d55b-f877-4db3-b105-2bacbe27d6d5"
+ "093e6f2a-8e61-432d-a1cf-d8e27f1595cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11986"
],
"x-ms-correlation-request-id": [
- "af082d17-81be-484f-b2af-308f03f5913b"
+ "093e6f2a-8e61-432d-a1cf-d8e27f1595cc"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:af082d17-81be-484f-b2af-308f03f5913b"
+ "WESTCENTRALUS:20220401T185735Z:093e6f2a-8e61-432d-a1cf-d8e27f1595cc"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:35 GMT"
],
"Content-Length": [
"97"
@@ -403,13 +403,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b7e9663-a860-4774-9c6f-d7c295a121ac"
+ "adb68304-948f-426b-9b59-6903610941f6"
],
"If-Match": [
"*"
@@ -418,10 +418,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -438,7 +438,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ef92ced3-c13f-4ce4-b827-f778d849e572"
+ "2d00da13-9f97-4a1b-bb4a-66393c2b8251"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -447,13 +447,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "e907e71e-e307-40f8-bff1-878214f0d3d1"
+ "2d00da13-9f97-4a1b-bb4a-66393c2b8251"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001042Z:e907e71e-e307-40f8-bff1-878214f0d3d1"
+ "WESTCENTRALUS:20220401T185727Z:2d00da13-9f97-4a1b-bb4a-66393c2b8251"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:41 GMT"
+ "Fri, 01 Apr 2022 18:57:27 GMT"
],
"Expires": [
"-1"
@@ -466,13 +466,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c65cfd9e-5a13-4bee-9837-c4f846d62601"
+ "0a1346cb-ec27-432f-8cec-9eb9b76b66b4"
],
"If-Match": [
"*"
@@ -481,10 +481,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,7 +501,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6f679fd6-abeb-4ada-9b74-03570a8b502f"
+ "72f42155-30fb-4b1d-aa2e-f030eaa5ef9f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -510,13 +510,13 @@
"14995"
],
"x-ms-correlation-request-id": [
- "6bf70af2-e113-4c1c-877a-e828e057d1d1"
+ "72f42155-30fb-4b1d-aa2e-f030eaa5ef9f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:6bf70af2-e113-4c1c-877a-e828e057d1d1"
+ "WESTCENTRALUS:20220401T185735Z:72f42155-30fb-4b1d-aa2e-f030eaa5ef9f"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:47 GMT"
+ "Fri, 01 Apr 2022 18:57:35 GMT"
],
"Expires": [
"-1"
@@ -529,22 +529,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz8kZmlsdGVyPXByb3BlcnRpZXMvZGlzcGxheU5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "04b6b428-d1fe-4f7c-81a6-718693444d36"
+ "3da6f6c8-0712-4edf-9a4a-fac5edfc2260"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -561,25 +561,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b8778c83-6bc8-4ae6-a36e-f533b555b47c"
+ "4d22af3f-3346-4087-9ef0-4d4e553de6f2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "0c499329-62d3-4e6a-aed0-a5a8eed54027"
+ "4d22af3f-3346-4087-9ef0-4d4e553de6f2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001042Z:0c499329-62d3-4e6a-aed0-a5a8eed54027"
+ "WESTCENTRALUS:20220401T185727Z:4d22af3f-3346-4087-9ef0-4d4e553de6f2"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:42 GMT"
+ "Fri, 01 Apr 2022 18:57:27 GMT"
],
"Content-Length": [
- "670"
+ "680"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -588,26 +588,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?$filter=properties/displayName%20eq%20'Unlimited'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz8kZmlsdGVyPXByb3BlcnRpZXMvZGlzcGxheU5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "340d98f6-91ba-44ec-8ecd-89058f93155c"
+ "97db8495-50ae-432c-8cdd-8b334eba70e2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -624,25 +624,25 @@
"nosniff"
],
"x-ms-request-id": [
- "441a2bdf-6146-4a6f-8f70-8110095d5c07"
+ "34052360-4ac5-4ee1-9d0b-2809e675fcd3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11985"
],
"x-ms-correlation-request-id": [
- "ae9c6036-e60f-4789-ae93-f40439d4fbb1"
+ "34052360-4ac5-4ee1-9d0b-2809e675fcd3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:ae9c6036-e60f-4789-ae93-f40439d4fbb1"
+ "WESTCENTRALUS:20220401T185735Z:34052360-4ac5-4ee1-9d0b-2809e675fcd3"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:35 GMT"
],
"Content-Length": [
- "670"
+ "680"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -651,17 +651,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ed8b554-e69a-4524-a5ff-b79662a48d6d"
+ "d3ea94d8-abc8-4e02-b166-43f2b19b4348"
],
"If-Match": [
"*"
@@ -670,10 +670,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -690,7 +690,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/2A=\""
+ "\"AAAAAAAACxw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -699,25 +699,25 @@
"nosniff"
],
"x-ms-request-id": [
- "05fe996f-036f-4c92-8d40-fd0757b6978f"
+ "1f0c8e43-493b-48da-bcd5-2baaf7d7a92f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "2777c4df-fa4a-4768-bed8-c8396df8dbfc"
+ "1f0c8e43-493b-48da-bcd5-2baaf7d7a92f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001043Z:2777c4df-fa4a-4768-bed8-c8396df8dbfc"
+ "WESTCENTRALUS:20220401T185729Z:1f0c8e43-493b-48da-bcd5-2baaf7d7a92f"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:43 GMT"
+ "Fri, 01 Apr 2022 18:57:29 GMT"
],
"Content-Length": [
- "578"
+ "588"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -726,17 +726,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0cd5e56d-6b4b-4727-aab8-5c3778202c0a"
+ "650fa57c-7697-425e-a42c-342413bf9410"
],
"If-Match": [
"*"
@@ -745,10 +745,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -765,7 +765,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/4Q=\""
+ "\"AAAAAAAAC0E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -774,25 +774,25 @@
"nosniff"
],
"x-ms-request-id": [
- "c2391fca-fe03-4a38-a9a0-e9846d4fdc76"
+ "5e708676-c3d8-4f98-8119-81dc821ec608"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1194"
],
"x-ms-correlation-request-id": [
- "0ec715b7-3ad0-4f81-b415-e2726a81e868"
+ "5e708676-c3d8-4f98-8119-81dc821ec608"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:0ec715b7-3ad0-4f81-b415-e2726a81e868"
+ "WESTCENTRALUS:20220401T185735Z:5e708676-c3d8-4f98-8119-81dc821ec608"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:35 GMT"
],
"Content-Length": [
- "578"
+ "588"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -801,26 +801,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "031215a9-8913-4fcb-bd25-ff41917ee694"
+ "9fabf890-b73e-4eaa-9845-dd982569c8e5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -831,7 +831,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/2A=\""
+ "\"AAAAAAAACxw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -840,25 +840,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b85fa485-3244-42e8-b4b2-8da2ae23b8b6"
+ "4615b4ac-2c35-4a54-b18b-4c44161a1037"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "e51d9c56-d122-4b3d-a4a0-694141664626"
+ "4615b4ac-2c35-4a54-b18b-4c44161a1037"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001043Z:e51d9c56-d122-4b3d-a4a0-694141664626"
+ "WESTCENTRALUS:20220401T185729Z:4615b4ac-2c35-4a54-b18b-4c44161a1037"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:43 GMT"
+ "Fri, 01 Apr 2022 18:57:29 GMT"
],
"Content-Length": [
- "578"
+ "588"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -867,26 +867,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d06ebd0-d369-4975-bd48-b6321da209bd"
+ "e46d68c0-8d3c-464d-842f-46257ed55344"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -903,22 +903,22 @@
"nosniff"
],
"x-ms-request-id": [
- "cf9ed848-c7c7-40e2-8cf4-7b9afaa5c182"
+ "9012d8a0-3fb2-4324-a110-3909b0fd38da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "6c285006-cbc4-44ea-a87e-bc91f4d21acb"
+ "9012d8a0-3fb2-4324-a110-3909b0fd38da"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001044Z:6c285006-cbc4-44ea-a87e-bc91f4d21acb"
+ "WESTCENTRALUS:20220401T185730Z:9012d8a0-3fb2-4324-a110-3909b0fd38da"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:43 GMT"
+ "Fri, 01 Apr 2022 18:57:30 GMT"
],
"Content-Length": [
"97"
@@ -934,22 +934,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e347bdb4-2647-4f99-ae05-5f0aa53f5950"
+ "03079f3d-4bd8-400d-bedd-8341afb90079"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -966,22 +966,22 @@
"nosniff"
],
"x-ms-request-id": [
- "02d0b768-3103-4f19-9a90-f4191851485c"
+ "9b1b36fe-16a4-419f-b997-845a47bf9901"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11983"
],
"x-ms-correlation-request-id": [
- "24c072a6-55ac-46b4-9b76-a6a901100ac3"
+ "9b1b36fe-16a4-419f-b997-845a47bf9901"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:24c072a6-55ac-46b4-9b76-a6a901100ac3"
+ "WESTCENTRALUS:20220401T185736Z:9b1b36fe-16a4-419f-b997-845a47bf9901"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:36 GMT"
],
"Content-Length": [
"97"
@@ -997,13 +997,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a87d12d-0367-4f77-935e-e1d74e9849d3"
+ "f0e42992-a2ce-4c22-b81c-cc9b42964e56"
],
"If-Match": [
"*"
@@ -1012,10 +1012,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1032,7 +1032,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a34d5b41-2d7e-406e-8dbe-388d4ab0570e"
+ "69da58fd-197e-4983-857b-b08a176a0eff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1041,13 +1041,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "3f6d22f9-8384-4632-80e8-3800e2429940"
+ "69da58fd-197e-4983-857b-b08a176a0eff"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001043Z:3f6d22f9-8384-4632-80e8-3800e2429940"
+ "WESTCENTRALUS:20220401T185730Z:69da58fd-197e-4983-857b-b08a176a0eff"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:43 GMT"
+ "Fri, 01 Apr 2022 18:57:30 GMT"
],
"Expires": [
"-1"
@@ -1060,13 +1060,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2463c1fd-6d35-40ae-b0f6-6e171e2b8380"
+ "66fe1f07-a5ab-4d86-9f32-157f88c20f09"
],
"If-Match": [
"*"
@@ -1075,10 +1075,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1095,7 +1095,7 @@
"nosniff"
],
"x-ms-request-id": [
- "05584280-fe28-4a9f-8bbd-6e4d3f6b32ff"
+ "9fa8e990-aaa7-43e0-81cd-e0e1329fc8db"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1104,13 +1104,13 @@
"14994"
],
"x-ms-correlation-request-id": [
- "fd0c2667-c28d-4123-81e7-c692fdfaa8e3"
+ "9fa8e990-aaa7-43e0-81cd-e0e1329fc8db"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:fd0c2667-c28d-4123-81e7-c692fdfaa8e3"
+ "WESTCENTRALUS:20220401T185736Z:9fa8e990-aaa7-43e0-81cd-e0e1329fc8db"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:36 GMT"
],
"Expires": [
"-1"
@@ -1123,22 +1123,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8443eb04-0c21-4e3d-b6b7-bd743012cffb"
+ "6d1c7239-1e94-4e80-bfaf-3079c783c798"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1155,25 +1155,25 @@
"nosniff"
],
"x-ms-request-id": [
- "60605814-397a-4a4b-82ed-afc3b454d69d"
+ "236e1dc2-778b-4d46-a105-d2a750087b23"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-correlation-request-id": [
- "ed7d22c6-a993-4dd3-94e0-5c58bc25dd7c"
+ "236e1dc2-778b-4d46-a105-d2a750087b23"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001044Z:ed7d22c6-a993-4dd3-94e0-5c58bc25dd7c"
+ "WESTCENTRALUS:20220401T185730Z:236e1dc2-778b-4d46-a105-d2a750087b23"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:43 GMT"
+ "Fri, 01 Apr 2022 18:57:30 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1182,26 +1182,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8474b4f2-d00f-4a92-9e4f-b41f2b08e4ab"
+ "915ebf2e-cf74-4312-9f19-a526aca0cced"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1218,25 +1218,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b25d0c5e-7c06-4e64-91e5-bddd544951e6"
+ "5f447fd2-a7e3-4afa-9917-902511b96d7b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-correlation-request-id": [
- "ea960bb3-9908-457b-8b10-6fc38e1913d4"
+ "5f447fd2-a7e3-4afa-9917-902511b96d7b"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001045Z:ea960bb3-9908-457b-8b10-6fc38e1913d4"
+ "WESTCENTRALUS:20220401T185732Z:5f447fd2-a7e3-4afa-9917-902511b96d7b"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:45 GMT"
+ "Fri, 01 Apr 2022 18:57:32 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1245,26 +1245,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a316f74-4ca3-4590-a7c1-f2fa065fb5a2"
+ "e2be4b2d-f8db-46c4-9de2-d5c1f48f544c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1281,25 +1281,25 @@
"nosniff"
],
"x-ms-request-id": [
- "dd811301-7df1-4fbc-8eac-ccef89d443de"
+ "2aaaa19e-c7ed-4e61-82c5-96805e202392"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11982"
],
"x-ms-correlation-request-id": [
- "095090da-3e0f-4834-8efc-a9afc33cc726"
+ "2aaaa19e-c7ed-4e61-82c5-96805e202392"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001049Z:095090da-3e0f-4834-8efc-a9afc33cc726"
+ "WESTCENTRALUS:20220401T185736Z:2aaaa19e-c7ed-4e61-82c5-96805e202392"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:36 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1308,26 +1308,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55be5509-140f-46d0-9877-ca7a7c3c021f"
+ "c5d19f64-cad4-4461-ae50-3d61ee4bebb6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1344,25 +1344,25 @@
"nosniff"
],
"x-ms-request-id": [
- "f7b7df85-0fb4-4530-81aa-65030df0ec3d"
+ "ad1dd9e6-40cc-4b0a-a652-0759267bed55"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11979"
],
"x-ms-correlation-request-id": [
- "b99d1ca1-a514-4695-abe0-42d62d99294b"
+ "ad1dd9e6-40cc-4b0a-a652-0759267bed55"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001049Z:b99d1ca1-a514-4695-abe0-42d62d99294b"
+ "WESTCENTRALUS:20220401T185737Z:ad1dd9e6-40cc-4b0a-a652-0759267bed55"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:37 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1371,17 +1371,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n version\\r\\n Accept\\r\\n Accept-Charset\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "422e61d8-68a7-4848-bf07-ede1813b80da"
+ "2294655f-9526-4390-a56c-dcc2d2bbf6cc"
],
"If-Match": [
"*"
@@ -1390,10 +1390,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1410,7 +1410,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/2k=\""
+ "\"AAAAAAAACyc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1419,25 +1419,25 @@
"nosniff"
],
"x-ms-request-id": [
- "f7f4a0f2-8ea5-4cf7-b1ca-1105f0f22ff7"
+ "e048cf5a-da42-45e9-9744-4f0bc2341fed"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "f06ce2a5-639b-4e51-b8fb-e70eef900ad9"
+ "e048cf5a-da42-45e9-9744-4f0bc2341fed"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001045Z:f06ce2a5-639b-4e51-b8fb-e70eef900ad9"
+ "WESTCENTRALUS:20220401T185731Z:e048cf5a-da42-45e9-9744-4f0bc2341fed"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:44 GMT"
+ "Fri, 01 Apr 2022 18:57:31 GMT"
],
"Content-Length": [
- "810"
+ "820"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1446,17 +1446,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"versionAcceptAccept-Charset\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a7749b04-0033-4d0f-8bc7-a7822b496fd6"
+ "c16d0cc9-9d51-424a-b4a0-16aef3961e9e"
],
"If-Match": [
"*"
@@ -1465,10 +1465,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1485,7 +1485,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/40=\""
+ "\"AAAAAAAAC0o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1494,25 +1494,25 @@
"nosniff"
],
"x-ms-request-id": [
- "f7db2c98-9473-404d-8c03-f0af11e52d80"
+ "275c850c-5fb7-4ae5-a13e-a870fbc53c7d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1193"
],
"x-ms-correlation-request-id": [
- "367aa415-c135-4e7e-8b62-e19c680f5bec"
+ "275c850c-5fb7-4ae5-a13e-a870fbc53c7d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001049Z:367aa415-c135-4e7e-8b62-e19c680f5bec"
+ "WESTCENTRALUS:20220401T185736Z:275c850c-5fb7-4ae5-a13e-a870fbc53c7d"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:36 GMT"
],
"Content-Length": [
- "810"
+ "820"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1521,26 +1521,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "febdba1a-214a-4f6c-b1dd-12a5da6d2e9c"
+ "cb869e3a-fbec-43b2-aed0-6ace5609cd03"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1551,7 +1551,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/2k=\""
+ "\"AAAAAAAACyc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1560,25 +1560,25 @@
"nosniff"
],
"x-ms-request-id": [
- "96dcf90d-81a6-4cb7-b162-523ff98ae7b4"
+ "8f2b0897-4b5b-44c5-9fac-a5e7102ca437"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-correlation-request-id": [
- "628a15cb-4e9d-498d-bfcc-4279fbb10476"
+ "8f2b0897-4b5b-44c5-9fac-a5e7102ca437"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001045Z:628a15cb-4e9d-498d-bfcc-4279fbb10476"
+ "WESTCENTRALUS:20220401T185731Z:8f2b0897-4b5b-44c5-9fac-a5e7102ca437"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:44 GMT"
+ "Fri, 01 Apr 2022 18:57:31 GMT"
],
"Content-Length": [
- "810"
+ "820"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1587,26 +1587,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fed08ff-5ce0-496a-a719-d19b3c8de3c1"
+ "3e244895-405a-4c24-8f34-96c58598e1cc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1623,22 +1623,22 @@
"nosniff"
],
"x-ms-request-id": [
- "2c8d8c8a-a51b-4c84-961d-7e50558dd9c2"
+ "6d8c96b6-5828-4705-add7-06c33e2ef80e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-correlation-request-id": [
- "b4acd5d4-10d5-4fb2-8da4-946d2e967ebe"
+ "6d8c96b6-5828-4705-add7-06c33e2ef80e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001045Z:b4acd5d4-10d5-4fb2-8da4-946d2e967ebe"
+ "WESTCENTRALUS:20220401T185732Z:6d8c96b6-5828-4705-add7-06c33e2ef80e"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:45 GMT"
+ "Fri, 01 Apr 2022 18:57:32 GMT"
],
"Content-Length": [
"97"
@@ -1654,22 +1654,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9410c84c-4a20-46fb-8706-edc8fde1d198"
+ "a6a5371f-b2d0-48a6-be4e-23a8b9c1187a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1686,22 +1686,22 @@
"nosniff"
],
"x-ms-request-id": [
- "cc7df966-5ab0-407d-9d36-c4494564087e"
+ "698baa38-bbca-4791-a294-084599d656c8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11980"
],
"x-ms-correlation-request-id": [
- "03e55769-050d-4c7f-8fed-e47b1b5dd0c1"
+ "698baa38-bbca-4791-a294-084599d656c8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001049Z:03e55769-050d-4c7f-8fed-e47b1b5dd0c1"
+ "WESTCENTRALUS:20220401T185737Z:698baa38-bbca-4791-a294-084599d656c8"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:37 GMT"
],
"Content-Length": [
"97"
@@ -1717,13 +1717,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e7164a3-47ca-4324-8b0b-1fa3663e5073"
+ "2369cad8-90df-4a8a-9732-c16dc3bb020a"
],
"If-Match": [
"*"
@@ -1732,10 +1732,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1752,7 +1752,7 @@
"nosniff"
],
"x-ms-request-id": [
- "1382db5d-579d-4f7f-ba60-6776d2c08422"
+ "13fcb143-81e8-444a-9e97-263ceb71e2eb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1761,13 +1761,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "aad0ba2f-dcb7-482d-b4d7-da516aec9773"
+ "13fcb143-81e8-444a-9e97-263ceb71e2eb"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001045Z:aad0ba2f-dcb7-482d-b4d7-da516aec9773"
+ "WESTCENTRALUS:20220401T185732Z:13fcb143-81e8-444a-9e97-263ceb71e2eb"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:45 GMT"
+ "Fri, 01 Apr 2022 18:57:32 GMT"
],
"Expires": [
"-1"
@@ -1780,13 +1780,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b17c755-d677-4f72-b85c-5441e6f893a0"
+ "e29b7bce-8e6d-4435-805d-0ff59f3f14b5"
],
"If-Match": [
"*"
@@ -1795,10 +1795,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1815,7 +1815,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8b8cec82-61f8-4e73-99ce-c461eccbae39"
+ "547ae49d-24ec-4f1c-a9dc-ebae9d3ca4fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1824,13 +1824,13 @@
"14993"
],
"x-ms-correlation-request-id": [
- "7a7e8621-1fa5-4d3f-aaa6-34ee526985d3"
+ "547ae49d-24ec-4f1c-a9dc-ebae9d3ca4fe"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001049Z:7a7e8621-1fa5-4d3f-aaa6-34ee526985d3"
+ "WESTCENTRALUS:20220401T185737Z:547ae49d-24ec-4f1c-a9dc-ebae9d3ca4fe"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:36 GMT"
],
"Expires": [
"-1"
@@ -1843,22 +1843,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39965598-fb1f-4fcd-8e49-0024d2221813"
+ "3b76ddaa-55c4-4224-8123-948ba45ac63c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1875,25 +1875,25 @@
"nosniff"
],
"x-ms-request-id": [
- "b80f4742-7e95-45a9-a3bc-7bc9a846717f"
+ "f37d75ba-2c51-4206-a72b-e4efcc9b183f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11990"
],
"x-ms-correlation-request-id": [
- "f284e197-5fb0-41c0-8972-f859492d24b8"
+ "f37d75ba-2c51-4206-a72b-e4efcc9b183f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001046Z:f284e197-5fb0-41c0-8972-f859492d24b8"
+ "WESTCENTRALUS:20220401T185732Z:f37d75ba-2c51-4206-a72b-e4efcc9b183f"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:45 GMT"
+ "Fri, 01 Apr 2022 18:57:32 GMT"
],
"Content-Length": [
- "7816"
+ "7876"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1902,26 +1902,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a339316-3f0f-48d1-95c4-47b46d415e0d"
+ "9d920732-4fd5-4108-a907-f46ae5b4a067"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1938,25 +1938,25 @@
"nosniff"
],
"x-ms-request-id": [
- "a1ce66d3-3eaa-462e-9065-a8568b785856"
+ "b145b527-67cf-47fe-bcd5-e451f4ee8967"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11978"
],
"x-ms-correlation-request-id": [
- "e0b0ce66-6418-4063-8adf-1b7d2ebb109a"
+ "b145b527-67cf-47fe-bcd5-e451f4ee8967"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001049Z:e0b0ce66-6418-4063-8adf-1b7d2ebb109a"
+ "WESTCENTRALUS:20220401T185737Z:b145b527-67cf-47fe-bcd5-e451f4ee8967"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:37 GMT"
],
"Content-Length": [
- "7816"
+ "7876"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1965,17 +1965,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n },\r\n \"generatedSample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74e346be-9a1f-4f0e-97ae-e3061e745f66"
+ "480f12bf-4a60-4968-91a5-b9dc43a62d8d"
],
"If-Match": [
"*"
@@ -1984,10 +1984,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2004,7 +2004,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/3I=\""
+ "\"AAAAAAAACy8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2013,25 +2013,25 @@
"nosniff"
],
"x-ms-request-id": [
- "1e8a92e7-8404-40e0-a93b-57d80cf29229"
+ "d5ece4c7-e9e4-4320-9087-7dcbb0efce68"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-correlation-request-id": [
- "f9a996b8-2400-4f00-a121-d8ab63a107c2"
+ "d5ece4c7-e9e4-4320-9087-7dcbb0efce68"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001047Z:f9a996b8-2400-4f00-a121-d8ab63a107c2"
+ "WESTCENTRALUS:20220401T185734Z:d5ece4c7-e9e4-4320-9087-7dcbb0efce68"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:46 GMT"
+ "Fri, 01 Apr 2022 18:57:33 GMT"
],
"Content-Length": [
- "540"
+ "550"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2040,17 +2040,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
- "StatusCode": 201
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e722143-56f3-4723-8186-88ee1d2ed9e3"
+ "18869185-1243-4c96-b3e3-017a93c7b131"
],
"If-Match": [
"*"
@@ -2059,10 +2059,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2079,7 +2079,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/5Y=\""
+ "\"AAAAAAAAC1M=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2088,25 +2088,25 @@
"nosniff"
],
"x-ms-request-id": [
- "08afc0f2-a0df-4a46-91bc-a5463e50157c"
+ "158e8a50-fea2-46d9-979d-0152d322f241"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1192"
],
"x-ms-correlation-request-id": [
- "0f802d18-9c34-436a-9822-df28ece91c09"
+ "158e8a50-fea2-46d9-979d-0152d322f241"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001050Z:0f802d18-9c34-436a-9822-df28ece91c09"
+ "WESTCENTRALUS:20220401T185737Z:158e8a50-fea2-46d9-979d-0152d322f241"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:37 GMT"
],
"Content-Length": [
- "540"
+ "550"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2115,26 +2115,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2288f53-5b06-4c80-baaa-cb0dde00d299"
+ "6e4bb15d-dd47-415a-997d-76ba4f2a79e6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2145,7 +2145,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/3I=\""
+ "\"AAAAAAAACy8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2154,25 +2154,25 @@
"nosniff"
],
"x-ms-request-id": [
- "444d88bc-7e3c-49a4-838e-2e454e6fabe0"
+ "24b12a1c-b614-455f-aef1-9617d64cb737"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11989"
],
"x-ms-correlation-request-id": [
- "7082ab78-259b-4d23-ad0f-cdccc75f3c9b"
+ "24b12a1c-b614-455f-aef1-9617d64cb737"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001047Z:7082ab78-259b-4d23-ad0f-cdccc75f3c9b"
+ "WESTCENTRALUS:20220401T185734Z:24b12a1c-b614-455f-aef1-9617d64cb737"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:46 GMT"
+ "Fri, 01 Apr 2022 18:57:34 GMT"
],
"Content-Length": [
- "540"
+ "550"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2181,26 +2181,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b56299a-522d-4198-b465-2c8d1a2a146f"
+ "55377d55-337e-4625-a570-0d0c01c4027f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2217,22 +2217,22 @@
"nosniff"
],
"x-ms-request-id": [
- "6debade9-8141-4fa5-9bfa-b74b711324d2"
+ "309cb052-56e6-4010-9bcf-cbe0c20bd7ca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11988"
],
"x-ms-correlation-request-id": [
- "85094d94-5f1a-4f4d-9bcb-ab2106b6403b"
+ "309cb052-56e6-4010-9bcf-cbe0c20bd7ca"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001047Z:85094d94-5f1a-4f4d-9bcb-ab2106b6403b"
+ "WESTCENTRALUS:20220401T185734Z:309cb052-56e6-4010-9bcf-cbe0c20bd7ca"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:47 GMT"
+ "Fri, 01 Apr 2022 18:57:34 GMT"
],
"Content-Length": [
"97"
@@ -2248,22 +2248,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=xml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ffd38ca-3f31-4c4f-ae61-32e07d0001e7"
+ "211c0e21-6b33-434e-b29b-d5dfaedc7716"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2280,22 +2280,22 @@
"nosniff"
],
"x-ms-request-id": [
- "4862dd6b-6222-4175-a951-79403254794f"
+ "ab7d8e75-79a8-4d7a-9f0a-e839090cfe71"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11976"
],
"x-ms-correlation-request-id": [
- "4e650caa-bd52-4c8c-ad2c-3c637371ae29"
+ "ab7d8e75-79a8-4d7a-9f0a-e839090cfe71"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001050Z:4e650caa-bd52-4c8c-ad2c-3c637371ae29"
+ "WESTCENTRALUS:20220401T185738Z:ab7d8e75-79a8-4d7a-9f0a-e839090cfe71"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:50 GMT"
+ "Fri, 01 Apr 2022 18:57:38 GMT"
],
"Content-Length": [
"97"
@@ -2311,13 +2311,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a29eb87-07a0-433b-beff-aa12b6027f77"
+ "4e0a2cd0-cde1-4843-8e48-74cd33b1bd68"
],
"If-Match": [
"*"
@@ -2326,10 +2326,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2346,7 +2346,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b50697a1-9c4f-41ef-9d78-d3367455e9fd"
+ "3fe0a23b-bb6d-4b84-aa78-1eb7fe0c202a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2355,13 +2355,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "4348d42f-cf58-4e2a-be95-1172e1f31f50"
+ "3fe0a23b-bb6d-4b84-aa78-1eb7fe0c202a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001047Z:4348d42f-cf58-4e2a-be95-1172e1f31f50"
+ "WESTCENTRALUS:20220401T185734Z:3fe0a23b-bb6d-4b84-aa78-1eb7fe0c202a"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:47 GMT"
+ "Fri, 01 Apr 2022 18:57:34 GMT"
],
"Expires": [
"-1"
@@ -2374,13 +2374,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "909ad97e-00c4-460f-a415-74256c2bf796"
+ "605366ef-2fc9-4571-b962-e6881eba3e4d"
],
"If-Match": [
"*"
@@ -2389,10 +2389,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2409,7 +2409,7 @@
"nosniff"
],
"x-ms-request-id": [
- "04550a6c-82f9-4714-bf31-9b5c4ba1f2e0"
+ "843c6677-8c8f-46ab-80a2-5c21a8726fe3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2418,13 +2418,13 @@
"14992"
],
"x-ms-correlation-request-id": [
- "2aba9530-11a6-4d8f-8ed1-344586f44a30"
+ "843c6677-8c8f-46ab-80a2-5c21a8726fe3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001050Z:2aba9530-11a6-4d8f-8ed1-344586f44a30"
+ "WESTCENTRALUS:20220401T185738Z:843c6677-8c8f-46ab-80a2-5c21a8726fe3"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:37 GMT"
],
"Expires": [
"-1"
@@ -2437,22 +2437,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=rawxml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXJhd3htbCZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy?format=rawxml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd78192a-7627-4572-9642-4d68e3b9124e"
+ "87f366c1-e416-444e-bd20-638f1db5d4cb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2463,7 +2463,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/4Q=\""
+ "\"AAAAAAAAC0E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2472,25 +2472,25 @@
"nosniff"
],
"x-ms-request-id": [
- "0a214554-46bd-4bae-80f4-1d770391e21a"
+ "eb1c765f-752a-4d91-8698-7617c8a5ca19"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11984"
],
"x-ms-correlation-request-id": [
- "a74868be-598e-4e9d-ad48-0787a58f91c2"
+ "eb1c765f-752a-4d91-8698-7617c8a5ca19"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001048Z:a74868be-598e-4e9d-ad48-0787a58f91c2"
+ "WESTCENTRALUS:20220401T185735Z:eb1c765f-752a-4d91-8698-7617c8a5ca19"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:48 GMT"
+ "Fri, 01 Apr 2022 18:57:35 GMT"
],
"Content-Length": [
- "581"
+ "591"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2499,26 +2499,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?format=rawxml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy?format=rawxml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9cmF3eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f8d5a41-5e36-4716-bb9d-09202803f922"
+ "42480426-a096-42e1-a30b-e752f987d458"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2529,7 +2529,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/40=\""
+ "\"AAAAAAAAC0o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2538,25 +2538,25 @@
"nosniff"
],
"x-ms-request-id": [
- "defd2fb1-1427-47b2-8293-b56d757e13ab"
+ "5556722a-a8b7-4651-a498-7d8d1641953e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11981"
],
"x-ms-correlation-request-id": [
- "2665cf2f-4c49-4960-8545-72da38fb45d8"
+ "5556722a-a8b7-4651-a498-7d8d1641953e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001049Z:2665cf2f-4c49-4960-8545-72da38fb45d8"
+ "WESTCENTRALUS:20220401T185736Z:5556722a-a8b7-4651-a498-7d8d1641953e"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:36 GMT"
],
"Content-Length": [
- "813"
+ "823"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2565,26 +2565,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tversion\\r\\n\\t\\t\\tAccept\\r\\n\\t\\t\\tAccept-Charset\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?format=rawxml&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy?format=rawxml&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9cmF3eG1sJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c22d5220-dd05-441f-bdd3-e3400f2698b9"
+ "ae8f264d-d9ca-4414-8ee4-3e98ce017587"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2595,7 +2595,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/5Y=\""
+ "\"AAAAAAAAC1M=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2604,25 +2604,25 @@
"nosniff"
],
"x-ms-request-id": [
- "69415a84-a4e0-4aef-8a43-b5ea634d063f"
+ "9623dcc6-93ba-4d32-ae74-9470d062d5f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11977"
],
"x-ms-correlation-request-id": [
- "48c3de02-3e6c-42e1-ab49-27ffb837b922"
+ "9623dcc6-93ba-4d32-ae74-9470d062d5f7"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210713T001050Z:48c3de02-3e6c-42e1-ab49-27ffb837b922"
+ "WESTCENTRALUS:20220401T185737Z:9623dcc6-93ba-4d32-ae74-9470d062d5f7"
],
"Date": [
- "Tue, 13 Jul 2021 00:10:49 GMT"
+ "Fri, 01 Apr 2022 18:57:37 GMT"
],
"Content-Length": [
- "543"
+ "553"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2631,12 +2631,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"rawxml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json
index 9498be6a9343..2638c77a596b 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fcb2f2d3-a1c7-4356-a540-6cb5b2efe225"
+ "d96d515c-50d4-499f-9509-b395d92b2737"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f06587ac-fe7e-4fbd-b625-2b5f7cbc5528"
+ "0f98ddf1-0f7d-44b4-b464-53fda324be1d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "78f4a995-6732-45fe-ae9e-a12eb8f93393"
+ "0f98ddf1-0f7d-44b4-b464-53fda324be1d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001249Z:78f4a995-6732-45fe-ae9e-a12eb8f93393"
+ "WESTUS:20220401T185930Z:0f98ddf1-0f7d-44b4-b464-53fda324be1d"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:49 GMT"
+ "Fri, 01 Apr 2022 18:59:29 GMT"
],
"Content-Length": [
- "1287"
+ "1305"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1184\",\r\n \"terms\": \"ps6815\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps3631\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9460\",\r\n \"terms\": \"ps6955\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps3367\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01dc896f-18d4-448d-96da-f3fb31f8cd8e"
+ "fa55afe6-54c1-4048-a763-7ac647df7320"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,7 +96,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABABE=\""
+ "\"AAAAAAAAC9M=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -105,7 +105,7 @@
"nosniff"
],
"x-ms-request-id": [
- "888f6f49-f197-4ee6-a2f9-33f4b21e91e1"
+ "c84e4e71-bc4c-4161-a1a4-26c4412b9e5b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,16 +114,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "3266cb62-078e-4894-94ae-fdcefff65f50"
+ "c84e4e71-bc4c-4161-a1a4-26c4412b9e5b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001251Z:3266cb62-078e-4894-94ae-fdcefff65f50"
+ "WESTUS:20220401T185933Z:c84e4e71-bc4c-4161-a1a4-26c4412b9e5b"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:50 GMT"
+ "Fri, 01 Apr 2022 18:59:33 GMT"
],
"Content-Length": [
- "998"
+ "1018"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,26 +132,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps3631\",\r\n \"description\": \"ps1184\",\r\n \"terms\": \"ps6815\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps3367\",\r\n \"description\": \"ps9460\",\r\n \"terms\": \"ps6955\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01dc896f-18d4-448d-96da-f3fb31f8cd8e"
+ "fa55afe6-54c1-4048-a763-7ac647df7320"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABABE=\""
+ "\"AAAAAAAAC9M=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,7 +171,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7e8a989b-d95f-43e0-96c1-823ef1885e14"
+ "a4001566-aaea-49d1-9634-35237e8f0b5f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -180,16 +180,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "1fc78066-b674-46e6-8a40-e117060cb892"
+ "a4001566-aaea-49d1-9634-35237e8f0b5f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001251Z:1fc78066-b674-46e6-8a40-e117060cb892"
+ "WESTUS:20220401T185933Z:a4001566-aaea-49d1-9634-35237e8f0b5f"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:50 GMT"
+ "Fri, 01 Apr 2022 18:59:33 GMT"
],
"Content-Length": [
- "484"
+ "494"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,26 +198,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps3631\",\r\n \"description\": \"ps1184\",\r\n \"terms\": \"ps6815\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps3367\",\r\n \"description\": \"ps9460\",\r\n \"terms\": \"ps6955\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74a4dd1c-725b-4e05-9162-1d21f345e663"
+ "e054fde1-48a6-4f52-b7bf-01cda9e77290"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,7 +228,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAB8=\""
+ "\"AAAAAAAAC98=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -237,7 +237,7 @@
"nosniff"
],
"x-ms-request-id": [
- "74bf1e5c-254c-4442-9213-e6f5fe1ab523"
+ "5983aa2c-6951-40ce-890d-dc6f005c11ac"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,16 +246,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "688dca53-f3c4-4ae2-9323-fc6b833629da"
+ "5983aa2c-6951-40ce-890d-dc6f005c11ac"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001252Z:688dca53-f3c4-4ae2-9323-fc6b833629da"
+ "WESTUS:20220401T185934Z:5983aa2c-6951-40ce-890d-dc6f005c11ac"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:52 GMT"
+ "Fri, 01 Apr 2022 18:59:34 GMT"
],
"Content-Length": [
- "485"
+ "494"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,26 +264,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a8139834-0404-4656-8a09-e87a63489abe"
+ "ba3d8ba3-8a22-438d-9cf2-e6aa14789c11"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -300,7 +300,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b522310c-11ad-4be3-aac0-512fed6fc724"
+ "f7cd9f4a-5ab0-4d2a-9706-4a34c1ef7c58"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,13 +309,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "7c8128d1-fe60-4da3-bb07-1b88df90d9c3"
+ "f7cd9f4a-5ab0-4d2a-9706-4a34c1ef7c58"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001251Z:7c8128d1-fe60-4da3-bb07-1b88df90d9c3"
+ "WESTUS:20220401T185933Z:f7cd9f4a-5ab0-4d2a-9706-4a34c1ef7c58"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:50 GMT"
+ "Fri, 01 Apr 2022 18:59:33 GMT"
],
"Content-Length": [
"34"
@@ -331,22 +331,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "213b9190-4817-4405-9c36-0ce5071aa175"
+ "b2d0d204-12c5-4e9e-8955-b1a7b983e5dd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -363,7 +363,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f4489cb2-b73e-48ef-a5f3-e7e2f93f3599"
+ "d37a2e6e-06c6-484d-9f86-a9b805e62297"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "51e0bf47-8bc6-4eed-921b-45aeef28fc4d"
+ "d37a2e6e-06c6-484d-9f86-a9b805e62297"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001252Z:51e0bf47-8bc6-4eed-921b-45aeef28fc4d"
+ "WESTUS:20220401T185934Z:d37a2e6e-06c6-484d-9f86-a9b805e62297"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:51 GMT"
+ "Fri, 01 Apr 2022 18:59:34 GMT"
],
"Content-Length": [
- "754"
+ "764"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -390,26 +390,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52bfc356-8be8-444b-892b-3fe8a75bc0f3"
+ "80d4fef6-5562-41f2-b84d-97bad6281de6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"nosniff"
],
"x-ms-request-id": [
- "eea68440-7adb-4525-aa89-7abcd969b7bf"
+ "7ca80494-2edd-4e85-a1fd-cfd091b2380f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,13 +435,13 @@
"11990"
],
"x-ms-correlation-request-id": [
- "f56c7871-8ebd-4f6c-b297-5a9817686f19"
+ "7ca80494-2edd-4e85-a1fd-cfd091b2380f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001253Z:f56c7871-8ebd-4f6c-b297-5a9817686f19"
+ "WESTUS:20220401T185936Z:7ca80494-2edd-4e85-a1fd-cfd091b2380f"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:53 GMT"
+ "Fri, 01 Apr 2022 18:59:36 GMT"
],
"Content-Length": [
"34"
@@ -457,22 +457,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fe686a8-8bf2-416a-8e5d-91c85cdeec97"
+ "a6502b41-de62-4610-9caa-71c488ed5549"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,7 +489,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e8d6bce0-026b-456a-8180-576549ed6038"
+ "da949227-44ab-43dd-8b69-f83525c96566"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -498,16 +498,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "dc9ba162-4ad3-4155-a9f7-ccf4adde412e"
+ "da949227-44ab-43dd-8b69-f83525c96566"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001251Z:dc9ba162-4ad3-4155-a9f7-ccf4adde412e"
+ "WESTUS:20220401T185933Z:da949227-44ab-43dd-8b69-f83525c96566"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:51 GMT"
+ "Fri, 01 Apr 2022 18:59:33 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -516,26 +516,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "27920501-ad61-4592-a883-ec721cdfe960"
+ "4f1aa072-d304-46d5-8ed8-c2b5aa0315a6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -552,7 +552,7 @@
"nosniff"
],
"x-ms-request-id": [
- "82a063bc-d3e9-426a-8c53-fbcde971c94b"
+ "22a6a80a-308f-4d00-8bf3-98fcd31f5078"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -561,16 +561,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "657c0f52-beb0-49ad-801c-50a900c44c9d"
+ "22a6a80a-308f-4d00-8bf3-98fcd31f5078"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001253Z:657c0f52-beb0-49ad-801c-50a900c44c9d"
+ "WESTUS:20220401T185935Z:22a6a80a-308f-4d00-8bf3-98fcd31f5078"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:52 GMT"
+ "Fri, 01 Apr 2022 18:59:35 GMT"
],
"Content-Length": [
- "729"
+ "739"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -579,26 +579,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis/echo-api?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis/echo-api?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fe686a8-8bf2-416a-8e5d-91c85cdeec97"
+ "a6502b41-de62-4610-9caa-71c488ed5549"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -609,7 +609,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA/5E=\""
+ "\"AAAAAAAAC04=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -618,7 +618,7 @@
"nosniff"
],
"x-ms-request-id": [
- "97333f77-36d6-45eb-92b5-3e7d0a60106a"
+ "61746baa-4e85-4db0-ad38-c242ecd58639"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -627,16 +627,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "357dd0e3-8b16-4dde-81d7-6514ba600ac9"
+ "61746baa-4e85-4db0-ad38-c242ecd58639"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001251Z:357dd0e3-8b16-4dde-81d7-6514ba600ac9"
+ "WESTUS:20220401T185933Z:61746baa-4e85-4db0-ad38-c242ecd58639"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:51 GMT"
+ "Fri, 01 Apr 2022 18:59:33 GMT"
],
"Content-Length": [
- "619"
+ "629"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -645,17 +645,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps7874\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps8974\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74a4dd1c-725b-4e05-9162-1d21f345e663"
+ "e054fde1-48a6-4f52-b7bf-01cda9e77290"
],
"If-Match": [
"*"
@@ -664,16 +664,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "236"
+ "235"
]
},
"ResponseHeaders": {
@@ -684,7 +684,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAB8=\""
+ "\"AAAAAAAAC98=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -693,7 +693,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e37ab54e-6bcb-4f46-a1bb-d7a578e60c20"
+ "3e3759e4-905d-4ada-95ca-9722f07ba563"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -702,16 +702,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "dedaeccf-09b4-43aa-99ea-be245eb710c9"
+ "3e3759e4-905d-4ada-95ca-9722f07ba563"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001252Z:dedaeccf-09b4-43aa-99ea-be245eb710c9"
+ "WESTUS:20220401T185934Z:3e3759e4-905d-4ada-95ca-9722f07ba563"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:52 GMT"
+ "Fri, 01 Apr 2022 18:59:34 GMT"
],
"Content-Length": [
- "504"
+ "513"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -720,26 +720,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"groups\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"groups\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps7874'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzNzg3NCcmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products?$filter=properties/displayName%20eq%20'ps8974'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cz8kZmlsdGVyPXByb3BlcnRpZXMvZGlzcGxheU5hbWUlMjBlcSUyMCdwczg5NzQnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6dc543d4-35f3-4bf0-b7b8-ccaed1511b76"
+ "8af0278b-0264-4a52-b9b5-0736e76e14ca"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,7 +756,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e98b8f36-56c9-4b7d-a302-14f38778e512"
+ "1d0aa87b-9a44-4e98-956a-caedab4203da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -765,16 +765,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "26384caa-bd04-426d-86af-007e6ad7dcdb"
+ "1d0aa87b-9a44-4e98-956a-caedab4203da"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001252Z:26384caa-bd04-426d-86af-007e6ad7dcdb"
+ "WESTUS:20220401T185934Z:1d0aa87b-9a44-4e98-956a-caedab4203da"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:52 GMT"
+ "Fri, 01 Apr 2022 18:59:34 GMT"
],
"Content-Length": [
- "581"
+ "590"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -783,26 +783,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcHJvZHVjdHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/products?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c86db47-018f-45e0-abb2-2dad3fccbc05"
+ "1320b207-4453-4b2e-a41c-ee8ad50d7f8e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -819,7 +819,7 @@
"nosniff"
],
"x-ms-request-id": [
- "cb434e48-00c4-427f-978a-8658f6b6175c"
+ "ffdd70e8-eb06-4b1d-bebf-a8a2d1d4e83e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -828,16 +828,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "396cce82-e807-43de-b065-0016cb017bdd"
+ "ffdd70e8-eb06-4b1d-bebf-a8a2d1d4e83e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001253Z:396cce82-e807-43de-b065-0016cb017bdd"
+ "WESTUS:20220401T185935Z:ffdd70e8-eb06-4b1d-bebf-a8a2d1d4e83e"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:52 GMT"
+ "Fri, 01 Apr 2022 18:59:35 GMT"
],
"Content-Length": [
- "1888"
+ "1915"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -846,26 +846,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/ps8354\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps8354\",\r\n \"properties\": {\r\n \"displayName\": \"ps7874\",\r\n \"description\": \"ps9840\",\r\n \"terms\": \"ps1049\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/products/ps9207\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps9207\",\r\n \"properties\": {\r\n \"displayName\": \"ps8974\",\r\n \"description\": \"ps1822\",\r\n \"terms\": \"ps828\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis/echo-api?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207/apis/echo-api?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDcvYXBpcy9lY2hvLWFwaT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "27920501-ad61-4592-a883-ec721cdfe960"
+ "4f1aa072-d304-46d5-8ed8-c2b5aa0315a6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -882,7 +882,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2d6897ec-1819-4492-8db9-987f2c4daa55"
+ "9be53566-578e-4665-939a-7d682a57452e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -891,13 +891,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "911bf08e-13af-4db4-b9e8-01c7abbadd9d"
+ "9be53566-578e-4665-939a-7d682a57452e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001253Z:911bf08e-13af-4db4-b9e8-01c7abbadd9d"
+ "WESTUS:20220401T185936Z:9be53566-578e-4665-939a-7d682a57452e"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:53 GMT"
+ "Fri, 01 Apr 2022 18:59:36 GMT"
],
"Expires": [
"-1"
@@ -910,13 +910,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?deleteSubscriptions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/ps9207?deleteSubscriptions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9wczkyMDc/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03ece42f-bd50-4972-929f-59ca251d2fcc"
+ "4a0dfbdc-a9ec-446d-8342-0eed71d3af3b"
],
"If-Match": [
"*"
@@ -925,10 +925,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -945,7 +945,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f2c5418b-9685-4150-91cf-3bdb126e80cb"
+ "0db677ae-e65e-475c-8fc0-105e8e8035b8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -954,13 +954,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "977b9c7d-23f7-481f-9f93-5f9c2e99e29c"
+ "0db677ae-e65e-475c-8fc0-105e8e8035b8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001254Z:977b9c7d-23f7-481f-9f93-5f9c2e99e29c"
+ "WESTUS:20220401T185937Z:0db677ae-e65e-475c-8fc0-105e8e8035b8"
],
"Date": [
- "Tue, 13 Jul 2021 00:12:53 GMT"
+ "Fri, 01 Apr 2022 18:59:37 GMT"
],
"Expires": [
"-1"
@@ -975,16 +975,16 @@
],
"Names": {
"": [
- "ps8354",
- "ps3631",
- "ps1184",
- "ps6815",
- "ps7874",
- "ps9840",
- "ps1049"
+ "ps9207",
+ "ps3367",
+ "ps9460",
+ "ps6955",
+ "ps8974",
+ "ps1822",
+ "ps828"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json
index 699312589d5d..da06fa67f5ce 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1aa295d6-f83b-4027-8e01-167259fd7551"
+ "07af469f-2cae-4b75-9441-0cc42cfcc770"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,7 +33,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a28b46346111804bdbd3&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=624773a901234e13942b06e7&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,7 +42,7 @@
"nosniff"
],
"x-ms-request-id": [
- "639ec637-1f76-44be-8876-ad53986ff5b9"
+ "96f11657-be6a-4fda-85ae-a8303547c2d2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -51,13 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "08d62472-4853-4521-b5fb-c65ba40d5819"
+ "96f11657-be6a-4fda-85ae-a8303547c2d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183139Z:08d62472-4853-4521-b5fb-c65ba40d5819"
+ "WESTUS:20220401T215033Z:96f11657-be6a-4fda-85ae-a8303547c2d2"
],
"Date": [
- "Wed, 28 Jul 2021 18:31:39 GMT"
+ "Fri, 01 Apr 2022 21:50:33 GMT"
],
"Expires": [
"-1"
@@ -70,19 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a28b46346111804bdbd3&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEyOGI0NjM0NjExMTgwNGJkYmQzJmFzeW5jQ29kZT0yMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=624773a901234e13942b06e7&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc3M2E5MDEyMzRlMTM5NDJiMDZlNyZhc3luY0NvZGU9MjAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1aa295d6-f83b-4027-8e01-167259fd7551"
+ "07af469f-2cae-4b75-9441-0cc42cfcc770"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACho=\""
+ "\"AAAAAAAADg8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,7 +102,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d3954b43-275d-4d58-8aab-c4d301300955"
+ "6d8b6cd9-04af-4417-89ca-af688318e4ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +111,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "b84c437c-4c85-41d3-ab93-27daae7c1c1d"
+ "6d8b6cd9-04af-4417-89ca-af688318e4ab"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183209Z:b84c437c-4c85-41d3-ab93-27daae7c1c1d"
+ "WESTUS:20220401T215104Z:6d8b6cd9-04af-4417-89ca-af688318e4ab"
],
"Date": [
- "Wed, 28 Jul 2021 18:32:09 GMT"
+ "Fri, 01 Apr 2022 21:51:03 GMT"
],
"Content-Length": [
- "430"
+ "440"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920/listValue?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMC9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969/listValue?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5NjkvbGlzdFZhbHVlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b922dbd3-491e-4cf3-8758-9db6ac809a7e"
+ "bd476709-1849-474b-93f2-7235030b7990"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACho=\""
+ "\"AAAAAAAADg8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6b0da6eb-42f9-4775-a8d0-ff746dd91d6a"
+ "4b3fc6b3-c8f0-4aad-ba3c-adb2c30198c5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,13 +177,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "37c48172-f576-4572-bc11-df66c8d4b877"
+ "4b3fc6b3-c8f0-4aad-ba3c-adb2c30198c5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183209Z:37c48172-f576-4572-bc11-df66c8d4b877"
+ "WESTUS:20220401T215104Z:4b3fc6b3-c8f0-4aad-ba3c-adb2c30198c5"
],
"Date": [
- "Wed, 28 Jul 2021 18:32:09 GMT"
+ "Fri, 01 Apr 2022 21:51:03 GMT"
],
"Content-Length": [
"18"
@@ -195,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps5500\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps8504\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920/listValue?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMC9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969/listValue?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5NjkvbGlzdFZhbHVlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a92b9a5-12a9-4598-86ba-f1ba678400aa"
+ "316f6bc5-e0ea-4e73-b2de-ab8cd4447a6b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiA=\""
+ "\"AAAAAAAADhQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,7 +234,7 @@
"nosniff"
],
"x-ms-request-id": [
- "29bb92c8-a660-4565-9b2d-6d1218039b07"
+ "7cd00667-f15f-4df0-9e67-5ba351439d82"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,13 +243,13 @@
"1194"
],
"x-ms-correlation-request-id": [
- "3d6ff63b-2cb6-4437-af17-d5f7064cbbb5"
+ "7cd00667-f15f-4df0-9e67-5ba351439d82"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183444Z:3d6ff63b-2cb6-4437-af17-d5f7064cbbb5"
+ "WESTUS:20220401T215340Z:7cd00667-f15f-4df0-9e67-5ba351439d82"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:43 GMT"
+ "Fri, 01 Apr 2022 21:53:40 GMT"
],
"Content-Length": [
"18"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps5500\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps8504\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6762342b-f62f-40d0-b420-889ba7fdb20d"
+ "4bdfc5c0-8222-4089-b5c4-30ca474f1e2f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -297,7 +297,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01&asyncId=6101a2a946346111804bdbd7&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01&asyncId=624773c801234e13942b06eb&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -306,7 +306,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9d3c68bd-9e05-489e-8126-99264b92d884"
+ "08267152-d590-47d9-985f-314ef71d3938"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -315,13 +315,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "8e16e0ac-c37f-47f2-89bd-caa0f1e986b2"
+ "08267152-d590-47d9-985f-314ef71d3938"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183210Z:8e16e0ac-c37f-47f2-89bd-caa0f1e986b2"
+ "WESTUS:20220401T215104Z:08267152-d590-47d9-985f-314ef71d3938"
],
"Date": [
- "Wed, 28 Jul 2021 18:32:09 GMT"
+ "Fri, 01 Apr 2022 21:51:04 GMT"
],
"Expires": [
"-1"
@@ -334,19 +334,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01&asyncId=6101a2a946346111804bdbd7&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEyYTk0NjM0NjExMTgwNGJkYmQ3JmFzeW5jQ29kZT0yMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01&asyncId=624773c801234e13942b06eb&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc3M2M4MDEyMzRlMTM5NDJiMDZlYiZhc3luY0NvZGU9MjAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6762342b-f62f-40d0-b420-889ba7fdb20d"
+ "4bdfc5c0-8222-4089-b5c4-30ca474f1e2f"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,7 +357,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAChw=\""
+ "\"AAAAAAAADhA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -366,7 +366,7 @@
"nosniff"
],
"x-ms-request-id": [
- "77f5afef-3a67-4f97-9a4e-4fb858eb10a4"
+ "3b95965e-ebc4-44ca-936b-e6e0440f1a0f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,16 +375,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "81acedca-699d-4b74-96ba-e864a2397f6b"
+ "3b95965e-ebc4-44ca-936b-e6e0440f1a0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183240Z:81acedca-699d-4b74-96ba-e864a2397f6b"
+ "WESTUS:20220401T215135Z:3b95965e-ebc4-44ca-936b-e6e0440f1a0f"
],
"Date": [
- "Wed, 28 Jul 2021 18:32:39 GMT"
+ "Fri, 01 Apr 2022 21:51:35 GMT"
],
"Content-Length": [
- "614"
+ "624"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:09.9736242Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:04.8463957Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDgvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
+ "37b65578-6919-4ba1-bdad-8a55c5c0bb2e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,7 +423,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01&asyncId=6101a2c846346111804bdbdb&asyncCode=200"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01&asyncId=624773e701234e13942b06ef&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -432,7 +432,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e28a5b1a-5317-4a4b-86dc-c701ed347d8b"
+ "ba2ccebc-d221-4c8a-b2e4-07bce2653006"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,13 +441,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "1a13de72-65d9-4798-94e1-d7dd6b5269bb"
+ "ba2ccebc-d221-4c8a-b2e4-07bce2653006"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183240Z:1a13de72-65d9-4798-94e1-d7dd6b5269bb"
+ "WESTUS:20220401T215135Z:ba2ccebc-d221-4c8a-b2e4-07bce2653006"
],
"Date": [
- "Wed, 28 Jul 2021 18:32:39 GMT"
+ "Fri, 01 Apr 2022 21:51:35 GMT"
],
"Expires": [
"-1"
@@ -460,19 +460,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01&asyncId=6101a2c846346111804bdbdb&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MTAxYTJjODQ2MzQ2MTExODA0YmRiZGImYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01&asyncId=624773e701234e13942b06ef&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDgvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzczZTcwMTIzNGUxMzk0MmIwNmVmJmFzeW5jQ29kZT0yMDA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
+ "37b65578-6919-4ba1-bdad-8a55c5c0bb2e"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -483,7 +483,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh0=\""
+ "\"AAAAAAAADhE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -492,7 +492,7 @@
"nosniff"
],
"x-ms-request-id": [
- "41ac7834-1c15-43bb-a5ea-ad37c26e72b0"
+ "745ea9c5-1d18-4a75-86f1-bcd68d00b460"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,16 +501,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "b014b4f7-c717-4790-8b62-ba1453b2494b"
+ "745ea9c5-1d18-4a75-86f1-bcd68d00b460"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183310Z:b014b4f7-c717-4790-8b62-ba1453b2494b"
+ "WESTUS:20220401T215205Z:745ea9c5-1d18-4a75-86f1-bcd68d00b460"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:09 GMT"
+ "Fri, 01 Apr 2022 21:52:05 GMT"
],
"Content-Length": [
- "628"
+ "638"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -519,23 +519,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01&asyncId=6101a2c846346111804bdbdb&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDEmYXN5bmNJZD02MTAxYTJjODQ2MzQ2MTExODA0YmRiZGImYXN5bmNDb2RlPTIwMA==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148/refreshSecret?api-version=2021-08-01&asyncId=624773e701234e13942b06ef&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDgvcmVmcmVzaFNlY3JldD9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0NzczZTcwMTIzNGUxMzk0MmIwNmVmJmFzeW5jQ29kZT0yMDA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
+ "37b65578-6919-4ba1-bdad-8a55c5c0bb2e"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -546,7 +546,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh0=\""
+ "\"AAAAAAAADhE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -555,7 +555,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0a671f4f-2c0b-456f-b295-4b9ed259888e"
+ "e55025be-584a-4325-8a64-6a2d6808e069"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -564,16 +564,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "4bd06c47-c3ca-420d-bfc0-0fe7dc4eafa0"
+ "e55025be-584a-4325-8a64-6a2d6808e069"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183310Z:4bd06c47-c3ca-420d-bfc0-0fe7dc4eafa0"
+ "WESTUS:20220401T215205Z:e55025be-584a-4325-8a64-6a2d6808e069"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:10 GMT"
+ "Fri, 01 Apr 2022 21:52:05 GMT"
],
"Content-Length": [
- "628"
+ "638"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -582,26 +582,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues/refreshSecret\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
+ "37b65578-6919-4ba1-bdad-8a55c5c0bb2e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -612,7 +612,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh0=\""
+ "\"AAAAAAAADhE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -621,7 +621,7 @@
"nosniff"
],
"x-ms-request-id": [
- "cd15d859-2247-4f35-81c0-e4e29e2a3fef"
+ "a16a6799-bf5a-44aa-bd59-c475e876a83f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -630,16 +630,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "4f086696-238a-4713-9165-23d56add4926"
+ "a16a6799-bf5a-44aa-bd59-c475e876a83f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183311Z:4f086696-238a-4713-9165-23d56add4926"
+ "WESTUS:20220401T215205Z:a16a6799-bf5a-44aa-bd59-c475e876a83f"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:10 GMT"
+ "Fri, 01 Apr 2022 21:52:05 GMT"
],
"Content-Length": [
- "614"
+ "624"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -648,26 +648,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps9075\",\r\n \"value\": \"ps2973\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps5649\",\r\n \"value\": \"ps3376\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "316c8a91-a72d-4c41-a028-68964cb6dfb2"
+ "434e3611-b467-4605-bb2e-d3ed6d2650a2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -684,7 +684,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a2e746346111804bdbdf&asyncCode=201"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247740501234e13942b06f3&asyncCode=201"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -693,7 +693,7 @@
"nosniff"
],
"x-ms-request-id": [
- "cfada894-f2ee-4fd2-a649-d727b3c3fe6d"
+ "1e6609c2-1b04-4191-a2e4-6ddca34e936d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -702,13 +702,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "1fd45db9-9fba-48ae-952f-042a3704b680"
+ "1e6609c2-1b04-4191-a2e4-6ddca34e936d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183311Z:1fd45db9-9fba-48ae-952f-042a3704b680"
+ "WESTUS:20220401T215206Z:1e6609c2-1b04-4191-a2e4-6ddca34e936d"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:10 GMT"
+ "Fri, 01 Apr 2022 21:52:06 GMT"
],
"Expires": [
"-1"
@@ -721,19 +721,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a2e746346111804bdbdf&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEyZTc0NjM0NjExMTgwNGJkYmRmJmFzeW5jQ29kZT0yMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247740501234e13942b06f3&asyncCode=201",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0Nzc0MDUwMTIzNGUxMzk0MmIwNmYzJmFzeW5jQ29kZT0yMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "316c8a91-a72d-4c41-a028-68964cb6dfb2"
+ "434e3611-b467-4605-bb2e-d3ed6d2650a2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -744,7 +744,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh4=\""
+ "\"AAAAAAAADhI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -753,7 +753,7 @@
"nosniff"
],
"x-ms-request-id": [
- "17ff27f1-876e-4bf6-80c4-78eb77c0a7c1"
+ "4d410367-3a61-4d5c-ac72-76b222c3069d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -762,16 +762,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "69766acd-fb85-476e-8c65-5f5f396cd79d"
+ "4d410367-3a61-4d5c-ac72-76b222c3069d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183341Z:69766acd-fb85-476e-8c65-5f5f396cd79d"
+ "WESTUS:20220401T215236Z:4d410367-3a61-4d5c-ac72-76b222c3069d"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:41 GMT"
+ "Fri, 01 Apr 2022 21:52:35 GMT"
],
"Content-Length": [
- "352"
+ "360"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -780,26 +780,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8aa9e140-c7ab-4b74-858a-b8b9f98de453"
+ "c7aa9176-ad8e-4d74-be84-ea71b761e96c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -816,7 +816,7 @@
"nosniff"
],
"x-ms-request-id": [
- "20bf0a41-c026-4f21-b909-e73b1d3725f7"
+ "51a0d69b-e758-4c28-9928-32c30efb3080"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -825,16 +825,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "4b313a98-324a-4d56-b017-9255f2baca57"
+ "51a0d69b-e758-4c28-9928-32c30efb3080"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183341Z:4b313a98-324a-4d56-b017-9255f2baca57"
+ "WESTUS:20220401T215236Z:51a0d69b-e758-4c28-9928-32c30efb3080"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:41 GMT"
+ "Fri, 01 Apr 2022 21:52:35 GMT"
],
"Content-Length": [
- "1614"
+ "1642"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -843,26 +843,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?$filter=substringof('ps',properties/displayName)&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzPyRmaWx0ZXI9c3Vic3RyaW5nb2YoJ3BzJyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?$filter=substringof('ps',properties/displayName)&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz8kZmlsdGVyPXN1YnN0cmluZ29mKCdwcycscHJvcGVydGllcy9kaXNwbGF5TmFtZSkmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "837d3015-c0da-466d-a542-8e8976a1dbb7"
+ "a7ce2c62-d133-4fbe-8523-27ecde1f4bc1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -879,7 +879,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e5140ede-6b08-491c-83d7-0500b6befc6c"
+ "11f4b717-8047-49cd-ae8e-1cc314c65208"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -888,16 +888,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "99654827-6134-4e7b-a1a2-658b2270f221"
+ "11f4b717-8047-49cd-ae8e-1cc314c65208"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183342Z:99654827-6134-4e7b-a1a2-658b2270f221"
+ "WESTUS:20220401T215237Z:11f4b717-8047-49cd-ae8e-1cc314c65208"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:41 GMT"
+ "Fri, 01 Apr 2022 21:52:36 GMT"
],
"Content-Length": [
- "1614"
+ "1642"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -906,26 +906,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7160\",\r\n \"properties\": {\r\n \"displayName\": \"ps7105\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2021-07-28T18:32:40.6298621Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2148\",\r\n \"properties\": {\r\n \"displayName\": \"ps6386\",\r\n \"keyVault\": {\r\n \"secretIdentifier\": \"https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv\",\r\n \"identityClientId\": null,\r\n \"lastStatus\": {\r\n \"code\": \"Success\",\r\n \"timeStampUtc\": \"2022-04-01T21:51:35.7421633Z\"\r\n }\r\n },\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?$filter=tags/any(t:%20t%20eq%20'sdk')&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzPyRmaWx0ZXI9dGFncy9hbnkodDolMjB0JTIwZXElMjAnc2RrJykmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues?$filter=tags/any(t:%20t%20eq%20'sdk')&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcz8kZmlsdGVyPXRhZ3MvYW55KHQ6JTIwdCUyMGVxJTIwJ3NkaycpJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5df9472a-8fda-4d38-a4d9-1cb3a7d959e0"
+ "5d8b4e74-d4ac-4fc2-9680-71c118963352"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -942,7 +942,7 @@
"nosniff"
],
"x-ms-request-id": [
- "11d63187-676d-4c05-bede-2616fdc7269a"
+ "c83a7d8c-7845-426c-aec5-b312499c5f69"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -951,16 +951,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "8bf94b7c-8878-49ea-95db-34eea83f37ca"
+ "c83a7d8c-7845-426c-aec5-b312499c5f69"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183342Z:8bf94b7c-8878-49ea-95db-34eea83f37ca"
+ "WESTUS:20220401T215238Z:c83a7d8c-7845-426c-aec5-b312499c5f69"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:42 GMT"
+ "Fri, 01 Apr 2022 21:52:37 GMT"
],
"Content-Length": [
- "530"
+ "540"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -969,26 +969,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "880264f0-34bd-4fa3-b77a-f84446e81db6"
+ "7fa6bb70-f24a-45c9-a01d-ec5407362b88"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -999,7 +999,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh4=\""
+ "\"AAAAAAAADhI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1008,7 +1008,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0082a1f0-342c-4039-8d3e-bdb4892bae92"
+ "01bc2f85-5549-4174-94e6-d8a37558ea23"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1017,16 +1017,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "ad5b0301-b89f-439e-9100-5ef925709881"
+ "01bc2f85-5549-4174-94e6-d8a37558ea23"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183342Z:ad5b0301-b89f-439e-9100-5ef925709881"
+ "WESTUS:20220401T215238Z:01bc2f85-5549-4174-94e6-d8a37558ea23"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:42 GMT"
+ "Fri, 01 Apr 2022 21:52:37 GMT"
],
"Content-Length": [
- "352"
+ "360"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1035,26 +1035,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
+ "179dd442-f4ad-41d6-b024-f9a84ac5ae61"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1065,7 +1065,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh4=\""
+ "\"AAAAAAAADhI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1074,7 +1074,7 @@
"nosniff"
],
"x-ms-request-id": [
- "575221e7-03ba-4cfc-8c38-40769491e6e0"
+ "6275c9b3-df7d-4d05-a930-a215a2e0301b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1083,16 +1083,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "77e78f05-3ff7-4598-915f-d1d25069eaf4"
+ "6275c9b3-df7d-4d05-a930-a215a2e0301b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183342Z:77e78f05-3ff7-4598-915f-d1d25069eaf4"
+ "WESTUS:20220401T215238Z:6275c9b3-df7d-4d05-a930-a215a2e0301b"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:42 GMT"
+ "Fri, 01 Apr 2022 21:52:37 GMT"
],
"Content-Length": [
- "352"
+ "360"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1101,26 +1101,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
+ "179dd442-f4ad-41d6-b024-f9a84ac5ae61"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1131,7 +1131,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh8=\""
+ "\"AAAAAAAADhM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1140,7 +1140,7 @@
"nosniff"
],
"x-ms-request-id": [
- "09418c98-5682-4f90-a781-8a74508a9198"
+ "bceb2944-f4e6-4b09-b385-50e531b5da8f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1149,16 +1149,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "c8edbbc8-fa36-40c9-9156-05b83fd3b927"
+ "bceb2944-f4e6-4b09-b385-50e531b5da8f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183413Z:c8edbbc8-fa36-40c9-9156-05b83fd3b927"
+ "WESTUS:20220401T215309Z:bceb2944-f4e6-4b09-b385-50e531b5da8f"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:13 GMT"
+ "Fri, 01 Apr 2022 21:53:08 GMT"
],
"Content-Length": [
- "405"
+ "413"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1167,26 +1167,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b98ec61f-ba0d-44fd-9bd4-937b991d284d"
+ "293a6fbc-f2bc-42a3-93da-54510deaf689"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1203,7 +1203,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0b9ee7dc-43b5-447f-9f39-096d792294cb"
+ "7413c2b2-21be-46a9-ae76-aed5227802d2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1212,13 +1212,13 @@
"11983"
],
"x-ms-correlation-request-id": [
- "84693be8-7c89-48cd-a33a-a0bb5a4e3a63"
+ "7413c2b2-21be-46a9-ae76-aed5227802d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183444Z:84693be8-7c89-48cd-a33a-a0bb5a4e3a63"
+ "WESTUS:20220401T215341Z:7413c2b2-21be-46a9-ae76-aed5227802d2"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:44 GMT"
+ "Fri, 01 Apr 2022 21:53:41 GMT"
],
"Content-Length": [
"86"
@@ -1234,22 +1234,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653/listValue?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821/listValue?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a04f370-abef-41ea-8e66-760514693a75"
+ "6188d1fd-d70a-4a6f-87a9-2cfbb2243c12"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1260,7 +1260,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh4=\""
+ "\"AAAAAAAADhI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1269,7 +1269,7 @@
"nosniff"
],
"x-ms-request-id": [
- "63d0ab17-5cdc-4b28-a42e-1ef7247451aa"
+ "10ea65ef-e2f1-4c92-bcd4-55125d6b63e2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1278,13 +1278,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "48e2609c-6e65-453d-bf39-fd5a86ea94f2"
+ "10ea65ef-e2f1-4c92-bcd4-55125d6b63e2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183342Z:48e2609c-6e65-453d-bf39-fd5a86ea94f2"
+ "WESTUS:20220401T215238Z:10ea65ef-e2f1-4c92-bcd4-55125d6b63e2"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:42 GMT"
+ "Fri, 01 Apr 2022 21:52:37 GMT"
],
"Content-Length": [
"18"
@@ -1296,26 +1296,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps3376\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653/listValue?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821/listValue?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
+ "179dd442-f4ad-41d6-b024-f9a84ac5ae61"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1326,7 +1326,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh4=\""
+ "\"AAAAAAAADhI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1335,7 +1335,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0a983a89-425a-4d98-b42c-5796145e71e0"
+ "67d286f6-3d52-467f-a917-1aeffdfd3b34"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1344,13 +1344,13 @@
"1196"
],
"x-ms-correlation-request-id": [
- "d8848b46-6954-4886-92c1-f79ebb82cb8b"
+ "67d286f6-3d52-467f-a917-1aeffdfd3b34"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183342Z:d8848b46-6954-4886-92c1-f79ebb82cb8b"
+ "WESTUS:20220401T215238Z:67d286f6-3d52-467f-a917-1aeffdfd3b34"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:42 GMT"
+ "Fri, 01 Apr 2022 21:52:37 GMT"
],
"Content-Length": [
"18"
@@ -1362,26 +1362,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps3376\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653/listValue?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821/listValue?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fa1ed44-69c8-4701-83d1-ec19dcba2bc7"
+ "def8fc44-55aa-4e79-9a0d-9508449fbb43"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1392,7 +1392,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh8=\""
+ "\"AAAAAAAADhM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1401,7 +1401,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b0fcbfc0-2dbf-42b6-b9de-26335fd286d7"
+ "5a1075a2-a77b-41db-94d4-79f53505b017"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1410,13 +1410,13 @@
"1195"
],
"x-ms-correlation-request-id": [
- "227fdf88-9643-48d0-8c2a-9aa79206c7d4"
+ "5a1075a2-a77b-41db-94d4-79f53505b017"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183413Z:227fdf88-9643-48d0-8c2a-9aa79206c7d4"
+ "WESTUS:20220401T215309Z:5a1075a2-a77b-41db-94d4-79f53505b017"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:13 GMT"
+ "Fri, 01 Apr 2022 21:53:08 GMT"
],
"Content-Length": [
"18"
@@ -1428,17 +1428,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps3376\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
+ "179dd442-f4ad-41d6-b024-f9a84ac5ae61"
],
"If-Match": [
"*"
@@ -1447,10 +1447,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1467,7 +1467,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a30646346111804bdbe3&asyncCode=200"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247742601234e13942b06f7&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1476,7 +1476,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bcdef3ee-55d4-495d-9cfd-ab92b2491f01"
+ "fbf88c06-d0bb-43de-afce-adbddc188eeb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1485,13 +1485,13 @@
"1196"
],
"x-ms-correlation-request-id": [
- "01452b10-41d4-47be-84de-f6e9b4fac408"
+ "fbf88c06-d0bb-43de-afce-adbddc188eeb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183343Z:01452b10-41d4-47be-84de-f6e9b4fac408"
+ "WESTUS:20220401T215238Z:fbf88c06-d0bb-43de-afce-adbddc188eeb"
],
"Date": [
- "Wed, 28 Jul 2021 18:33:42 GMT"
+ "Fri, 01 Apr 2022 21:52:38 GMT"
],
"Expires": [
"-1"
@@ -1504,19 +1504,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01&asyncId=6101a30646346111804bdbe3&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEzMDY0NjM0NjExMTgwNGJkYmUzJmFzeW5jQ29kZT0yMDA=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01&asyncId=6247742601234e13942b06f7&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAxJmFzeW5jSWQ9NjI0Nzc0MjYwMTIzNGUxMzk0MmIwNmY3JmFzeW5jQ29kZT0yMDA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
+ "179dd442-f4ad-41d6-b024-f9a84ac5ae61"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1527,7 +1527,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACh8=\""
+ "\"AAAAAAAADhM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1536,7 +1536,7 @@
"nosniff"
],
"x-ms-request-id": [
- "33893af1-6406-4b73-86a9-0358792a3728"
+ "9ff0a39c-e1f7-4f6b-8597-9927f9c09a2c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1545,16 +1545,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "d2ea5c97-2939-4620-80cf-383e893f55ba"
+ "9ff0a39c-e1f7-4f6b-8597-9927f9c09a2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183413Z:d2ea5c97-2939-4620-80cf-383e893f55ba"
+ "WESTUS:20220401T215309Z:9ff0a39c-e1f7-4f6b-8597-9927f9c09a2c"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:12 GMT"
+ "Fri, 01 Apr 2022 21:53:08 GMT"
],
"Content-Length": [
- "405"
+ "413"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1563,26 +1563,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps9653\",\r\n \"properties\": {\r\n \"displayName\": \"ps9075\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps821\",\r\n \"properties\": {\r\n \"displayName\": \"ps5649\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31be54c4-bd53-4532-8484-5dc6db55cd7f"
+ "66033b22-0393-4ccd-ab0e-0b9bc045b66e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1593,7 +1593,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACho=\""
+ "\"AAAAAAAADg8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1602,7 +1602,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f21f5038-b7a7-44ce-ba90-723f9853646c"
+ "82414d31-e7ed-4158-8e01-7a2bd05225bc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1611,16 +1611,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "c7f9a879-6289-48b7-889b-8234a6397d7a"
+ "82414d31-e7ed-4158-8e01-7a2bd05225bc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183413Z:c7f9a879-6289-48b7-889b-8234a6397d7a"
+ "WESTUS:20220401T215309Z:82414d31-e7ed-4158-8e01-7a2bd05225bc"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:13 GMT"
+ "Fri, 01 Apr 2022 21:53:09 GMT"
],
"Content-Length": [
- "430"
+ "440"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1629,26 +1629,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"value\": \"ps5500\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"value\": \"ps8504\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31be54c4-bd53-4532-8484-5dc6db55cd7f"
+ "66033b22-0393-4ccd-ab0e-0b9bc045b66e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1659,7 +1659,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiA=\""
+ "\"AAAAAAAADhQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1668,7 +1668,7 @@
"nosniff"
],
"x-ms-request-id": [
- "4d053144-4d3a-4576-8a90-48300ea2f822"
+ "e1d76d7d-a7da-4c1c-b23e-adf4f928018f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1677,16 +1677,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "88be87ad-ae1f-44d7-8fb0-93969febc6a3"
+ "e1d76d7d-a7da-4c1c-b23e-adf4f928018f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183444Z:88be87ad-ae1f-44d7-8fb0-93969febc6a3"
+ "WESTUS:20220401T215340Z:e1d76d7d-a7da-4c1c-b23e-adf4f928018f"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:43 GMT"
+ "Fri, 01 Apr 2022 21:53:40 GMT"
],
"Content-Length": [
- "405"
+ "415"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1695,26 +1695,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c17616b6-2be1-4a1a-a986-4c0f2cdc5514"
+ "901e080b-aea0-4993-a0d2-74c23d27cf96"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1731,7 +1731,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a243f8f7-7288-473a-855b-f54613574972"
+ "010d75f9-329b-4de9-b388-e320825082b1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1740,13 +1740,13 @@
"11982"
],
"x-ms-correlation-request-id": [
- "49ad37dc-711d-450d-a2dd-d9139d6472e9"
+ "010d75f9-329b-4de9-b388-e320825082b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183445Z:49ad37dc-711d-450d-a2dd-d9139d6472e9"
+ "WESTUS:20220401T215342Z:010d75f9-329b-4de9-b388-e320825082b1"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:44 GMT"
+ "Fri, 01 Apr 2022 21:53:42 GMT"
],
"Content-Length": [
"86"
@@ -1762,13 +1762,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31be54c4-bd53-4532-8484-5dc6db55cd7f"
+ "66033b22-0393-4ccd-ab0e-0b9bc045b66e"
],
"If-Match": [
"*"
@@ -1777,10 +1777,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1797,7 +1797,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a32546346111804bdbe7&asyncCode=200"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=6247744501234e13942b06fb&asyncCode=200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1806,7 +1806,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2e15dedb-6627-4d7a-af35-b101de2247f7"
+ "72b4cc88-1631-4469-8152-c381d8eaef2a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1815,13 +1815,13 @@
"1195"
],
"x-ms-correlation-request-id": [
- "99ec4731-5d0e-4e9f-aefe-7ba45492a421"
+ "72b4cc88-1631-4469-8152-c381d8eaef2a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183413Z:99ec4731-5d0e-4e9f-aefe-7ba45492a421"
+ "WESTUS:20220401T215309Z:72b4cc88-1631-4469-8152-c381d8eaef2a"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:13 GMT"
+ "Fri, 01 Apr 2022 21:53:09 GMT"
],
"Expires": [
"-1"
@@ -1834,19 +1834,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01&asyncId=6101a32546346111804bdbe7&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAxJmFzeW5jSWQ9NjEwMWEzMjU0NjM0NjExMTgwNGJkYmU3JmFzeW5jQ29kZT0yMDA=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01&asyncId=6247744501234e13942b06fb&asyncCode=200",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMSZhc3luY0lkPTYyNDc3NDQ1MDEyMzRlMTM5NDJiMDZmYiZhc3luY0NvZGU9MjAw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31be54c4-bd53-4532-8484-5dc6db55cd7f"
+ "66033b22-0393-4ccd-ab0e-0b9bc045b66e"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1857,7 +1857,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACiA=\""
+ "\"AAAAAAAADhQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1866,7 +1866,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ab5b9a7e-fedc-41b2-9c66-a3da57f79575"
+ "bca0bc61-defd-4994-a1cb-a69cb4cde23a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1875,16 +1875,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "beccfa14-8dac-4f6c-b61c-20d8c71631ed"
+ "bca0bc61-defd-4994-a1cb-a69cb4cde23a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183443Z:beccfa14-8dac-4f6c-b61c-20d8c71631ed"
+ "WESTUS:20220401T215340Z:bca0bc61-defd-4994-a1cb-a69cb4cde23a"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:43 GMT"
+ "Fri, 01 Apr 2022 21:53:39 GMT"
],
"Content-Length": [
- "405"
+ "415"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1893,17 +1893,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2920\",\r\n \"properties\": {\r\n \"displayName\": \"ps4604\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2969\",\r\n \"properties\": {\r\n \"displayName\": \"ps6996\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "27ed02e3-5089-4016-a4d4-25c71217c6ad"
+ "613edde9-e569-46c6-88b6-76dcc1f702c0"
],
"If-Match": [
"*"
@@ -1912,10 +1912,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1932,7 +1932,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0837a526-4046-41f3-b0ed-9701c306a735"
+ "27870fe8-1a5b-479a-a39f-6026a2f4d873"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1941,13 +1941,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "2bdce6c7-3a19-4ea7-9b9a-3cee6dfe936f"
+ "27870fe8-1a5b-479a-a39f-6026a2f4d873"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183444Z:2bdce6c7-3a19-4ea7-9b9a-3cee6dfe936f"
+ "WESTUS:20220401T215341Z:27870fe8-1a5b-479a-a39f-6026a2f4d873"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:44 GMT"
+ "Fri, 01 Apr 2022 21:53:41 GMT"
],
"Expires": [
"-1"
@@ -1960,13 +1960,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps821?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczgyMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2bcc809a-d100-4fa0-8659-62adca0151f3"
+ "2bde556b-822e-4a40-9414-35bf79ae94b0"
],
"If-Match": [
"*"
@@ -1975,10 +1975,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1995,7 +1995,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b9b677ed-0c64-4303-aaaf-537b417dd1d6"
+ "ec01bb5d-5efc-4f72-a05d-10894235092e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2004,13 +2004,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "f7a64682-3839-45a9-a6cf-fe85f99c5d19"
+ "ec01bb5d-5efc-4f72-a05d-10894235092e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183445Z:f7a64682-3839-45a9-a6cf-fe85f99c5d19"
+ "WESTUS:20220401T215342Z:ec01bb5d-5efc-4f72-a05d-10894235092e"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:44 GMT"
+ "Fri, 01 Apr 2022 21:53:42 GMT"
],
"Expires": [
"-1"
@@ -2020,13 +2020,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2969?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczI5Njk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e70d07b-3998-4d5e-a7b0-090ba66e7a85"
+ "1df3cb67-5563-4866-9866-31d4924a4014"
],
"If-Match": [
"*"
@@ -2035,10 +2035,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2055,7 +2055,7 @@
"nosniff"
],
"x-ms-request-id": [
- "74fb3bf6-f6ab-4d47-8f31-11bba6c0ca36"
+ "adf5b60a-0700-4a58-9361-80ce55112d34"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2064,13 +2064,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "4a02e6a9-6ddf-4f8c-b348-d0c5cd28a943"
+ "adf5b60a-0700-4a58-9361-80ce55112d34"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183445Z:4a02e6a9-6ddf-4f8c-b348-d0c5cd28a943"
+ "WESTUS:20220401T215342Z:adf5b60a-0700-4a58-9361-80ce55112d34"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:44 GMT"
+ "Fri, 01 Apr 2022 21:53:42 GMT"
],
"Expires": [
"-1"
@@ -2083,13 +2083,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/namedValues/ps2148?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9uYW1lZFZhbHVlcy9wczIxNDg/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c9d7629-b27a-455b-ace1-90374e6ab213"
+ "23cae494-3d03-4751-a794-9f90c0133164"
],
"If-Match": [
"*"
@@ -2098,10 +2098,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2118,7 +2118,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0a890018-b05f-40c4-bba0-ead739a17c6b"
+ "90f4a1ca-4156-4254-9961-638e10afbcb4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2127,13 +2127,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "eec64bb5-bfd4-4dde-b786-9d7c12ad9273"
+ "90f4a1ca-4156-4254-9961-638e10afbcb4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210728T183445Z:eec64bb5-bfd4-4dde-b786-9d7c12ad9273"
+ "WESTUS:20220401T215342Z:90f4a1ca-4156-4254-9961-638e10afbcb4"
],
"Date": [
- "Wed, 28 Jul 2021 18:34:45 GMT"
+ "Fri, 01 Apr 2022 21:53:42 GMT"
],
"Expires": [
"-1"
@@ -2148,17 +2148,17 @@
],
"Names": {
"": [
- "ps2920",
- "ps4604",
- "ps5500",
- "ps7160",
- "ps7105",
- "ps9653",
- "ps9075",
- "ps2973"
+ "ps2969",
+ "ps6996",
+ "ps8504",
+ "ps2148",
+ "ps6386",
+ "ps821",
+ "ps5649",
+ "ps3376"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json
index 6ba282a9cbb5..850fad85ab0e 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f443762-3bf9-48f0-a64b-e193b6eb2471"
+ "e9d26ab1-898b-47fd-a9ad-55b166208357"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "759e07bc-3467-4154-8df1-2d9a584b60e1"
+ "b2fa4a7e-5850-49ba-9971-3370c95e561a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "036fd807-9093-4ea9-b930-e2a1090808ae"
+ "b2fa4a7e-5850-49ba-9971-3370c95e561a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001627Z:036fd807-9093-4ea9-b930-e2a1090808ae"
+ "WESTUS:20220401T190252Z:b2fa4a7e-5850-49ba-9971-3370c95e561a"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:26 GMT"
+ "Fri, 01 Apr 2022 19:02:52 GMT"
],
"Content-Length": [
- "2859"
+ "2939"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50031142-73c3-4494-b6f5-a6bc5f28ee30"
+ "bd93fba7-9e9f-4c57-a0f4-e4f1444ae88a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,7 +90,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACOo=\""
+ "\"AAAAAAAACO8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -99,7 +99,7 @@
"nosniff"
],
"x-ms-request-id": [
- "32992469-66a7-4628-95a7-720593e346e7"
+ "28eb26ca-9966-4a1d-8b52-2913167555c9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,16 +108,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "29b8fa04-b8a0-41a8-aabc-32c67fced288"
+ "28eb26ca-9966-4a1d-8b52-2913167555c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001627Z:29b8fa04-b8a0-41a8-aabc-32c67fced288"
+ "WESTUS:20220401T190252Z:28eb26ca-9966-4a1d-8b52-2913167555c9"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:27 GMT"
+ "Fri, 01 Apr 2022 19:02:52 GMT"
],
"Content-Length": [
- "931"
+ "961"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +126,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "715d004a-f495-468c-8d78-ce291f0d113c"
+ "251607d9-c214-4932-bf4d-53c7d20c166c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,7 +156,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACOs=\""
+ "\"AAAAAAAACPA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -165,7 +165,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6d1943fd-b837-464d-8319-22575377bf1c"
+ "45323d76-03dc-4ab5-afda-f74defd0c985"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -174,16 +174,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "595e9ee5-8d58-4843-87d6-af3b9fdeb995"
+ "45323d76-03dc-4ab5-afda-f74defd0c985"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001627Z:595e9ee5-8d58-4843-87d6-af3b9fdeb995"
+ "WESTUS:20220401T190252Z:45323d76-03dc-4ab5-afda-f74defd0c985"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:27 GMT"
+ "Fri, 01 Apr 2022 19:02:52 GMT"
],
"Content-Length": [
- "933"
+ "963"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,26 +192,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL21hc3Rlcj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fa3e8443-4004-451d-847d-de0e4ed68f88"
+ "de7c570e-a616-43c7-9eb9-8b1502f1682a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -222,7 +222,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACP8=\""
+ "\"AAAAAAAACQo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ce6b7e7c-d810-4d5e-be77-275f67c137e9"
+ "affc229a-0762-4428-acc8-f0367a3ff7c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "e9d30af3-e646-476e-94ec-3c3f3fb51bbf"
+ "affc229a-0762-4428-acc8-f0367a3ff7c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001627Z:e9d30af3-e646-476e-94ec-3c3f3fb51bbf"
+ "WESTUS:20220401T190253Z:affc229a-0762-4428-acc8-f0367a3ff7c0"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:27 GMT"
+ "Fri, 01 Apr 2022 19:02:53 GMT"
],
"Content-Length": [
- "737"
+ "757"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,26 +258,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps8964\",\r\n \"primaryKey\": \"ps7489\",\r\n \"secondaryKey\": \"ps818\",\r\n \"state\": \"active\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps4883\",\r\n \"primaryKey\": \"ps101\",\r\n \"secondaryKey\": \"ps1764\",\r\n \"state\": \"active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d89d3467-dccb-464b-9631-9987259dfb43"
+ "0f1ab833-2722-48e9-b07a-b7d0fe9503c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,7 +294,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABARA=\""
+ "\"AAAAAAAADNE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -303,7 +303,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bb4e398a-c405-4efc-9a25-4edc2c81bbfc"
+ "69a0ae49-81e7-4fce-9db1-53da142eb42f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,16 +312,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "02cfb3d8-b611-4c66-ac94-98d5d9282ba8"
+ "69a0ae49-81e7-4fce-9db1-53da142eb42f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001628Z:02cfb3d8-b611-4c66-ac94-98d5d9282ba8"
+ "WESTUS:20220401T190254Z:69a0ae49-81e7-4fce-9db1-53da142eb42f"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:28 GMT"
+ "Fri, 01 Apr 2022 19:02:54 GMT"
],
"Content-Length": [
- "751"
+ "767"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,26 +330,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps8964\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.0713531Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps7489\",\r\n \"secondaryKey\": \"ps818\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4883\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.9142959Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps101\",\r\n \"secondaryKey\": \"ps1764\",\r\n \"stateComment\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e62fb82-263f-4127-8a3a-fe2779bc3c27"
+ "2c120c38-6239-4c36-9f49-7f260dcddd71"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,7 +360,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABARA=\""
+ "\"AAAAAAAADNE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -369,7 +369,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9f9a65a9-0ac0-4f61-a9f7-edd18bc47a36"
+ "95c63b29-7c79-4d6b-94ce-61227e59e867"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -378,13 +378,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e846a46f-b03f-441e-9dd3-d5b219380234"
+ "95c63b29-7c79-4d6b-94ce-61227e59e867"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001628Z:e846a46f-b03f-441e-9dd3-d5b219380234"
+ "WESTUS:20220401T190254Z:95c63b29-7c79-4d6b-94ce-61227e59e867"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:28 GMT"
+ "Fri, 01 Apr 2022 19:02:54 GMT"
],
"Content-Length": [
"46"
@@ -396,26 +396,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps7489\",\r\n \"secondaryKey\": \"ps818\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps101\",\r\n \"secondaryKey\": \"ps1764\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9815f5c8-8735-4218-b39d-3f8298125ad7"
+ "c4764b51-60ab-47c3-8f7a-e87afb40181f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABARQ=\""
+ "\"AAAAAAAADNU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -435,7 +435,7 @@
"nosniff"
],
"x-ms-request-id": [
- "4fd4444b-3feb-4ff1-8250-e96316537fba"
+ "32921276-d679-4586-8316-d266a25b3edc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -444,13 +444,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "df052037-1cca-4a80-925a-06e3b353c4d9"
+ "32921276-d679-4586-8316-d266a25b3edc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001630Z:df052037-1cca-4a80-925a-06e3b353c4d9"
+ "WESTUS:20220401T190254Z:32921276-d679-4586-8316-d266a25b3edc"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:29 GMT"
+ "Fri, 01 Apr 2022 19:02:54 GMT"
],
"Content-Length": [
"47"
@@ -462,17 +462,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps2935\",\r\n \"secondaryKey\": \"ps9155\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps5900\",\r\n \"secondaryKey\": \"ps3689\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps2642\",\r\n \"primaryKey\": \"ps2935\",\r\n \"secondaryKey\": \"ps9155\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps4599\",\r\n \"primaryKey\": \"ps5900\",\r\n \"secondaryKey\": \"ps3689\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e93b56c-7510-4ee0-b534-2bc52700de7e"
+ "ff58fe99-f9c1-49f4-876c-909454d1ebe2"
],
"If-Match": [
"*"
@@ -481,10 +481,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -501,7 +501,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABARQ=\""
+ "\"AAAAAAAADNU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -510,7 +510,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c062acc2-ed09-4dd3-a369-f6c65a37cbe2"
+ "61d5d738-b414-4026-be2d-331d55d3fd9e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -519,16 +519,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "8cc2cc45-692b-4652-943d-b79bfd2bec73"
+ "61d5d738-b414-4026-be2d-331d55d3fd9e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001630Z:8cc2cc45-692b-4652-943d-b79bfd2bec73"
+ "WESTUS:20220401T190254Z:61d5d738-b414-4026-be2d-331d55d3fd9e"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:29 GMT"
+ "Fri, 01 Apr 2022 19:02:54 GMT"
],
"Content-Length": [
- "1367"
+ "1404"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,26 +537,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps2642\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.07Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2935\",\r\n \"secondaryKey\": \"ps9155\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4599\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.913Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5900\",\r\n \"secondaryKey\": \"ps3689\",\r\n \"stateComment\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e93b56c-7510-4ee0-b534-2bc52700de7e"
+ "ff58fe99-f9c1-49f4-876c-909454d1ebe2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -567,7 +567,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABARQ=\""
+ "\"AAAAAAAADNU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -576,7 +576,7 @@
"nosniff"
],
"x-ms-request-id": [
- "1e89abad-bd50-4795-8a0d-1d0f4cb17c84"
+ "6830d6eb-4311-4a94-8a30-e99e7f3f08ef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -585,16 +585,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "d0f11173-0965-4022-997a-32a5e5049b3e"
+ "6830d6eb-4311-4a94-8a30-e99e7f3f08ef"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001630Z:d0f11173-0965-4022-997a-32a5e5049b3e"
+ "WESTUS:20220401T190254Z:6830d6eb-4311-4a94-8a30-e99e7f3f08ef"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:29 GMT"
+ "Fri, 01 Apr 2022 19:02:54 GMT"
],
"Content-Length": [
- "877"
+ "904"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -603,26 +603,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps2642\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.07Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4599\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.913Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?$filter=properties/scope%20eq%20'/apis'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/JGZpbHRlcj1wcm9wZXJ0aWVzL3Njb3BlJTIwZXElMjAnL2FwaXMnJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?$filter=properties/scope%20eq%20'/apis'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zPyRmaWx0ZXI9cHJvcGVydGllcy9zY29wZSUyMGVxJTIwJy9hcGlzJyZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc7cde8f-f391-4338-82a7-199f857cac46"
+ "464dbf95-e0f8-4712-b333-d5e8a0cb962a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -639,7 +639,7 @@
"nosniff"
],
"x-ms-request-id": [
- "48cdc693-2049-4b90-8a12-0d52532fe919"
+ "69e00277-d138-43fa-9f8d-f8228ac2555f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -648,16 +648,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "97046be7-0112-4af7-b03b-db45afd60a85"
+ "69e00277-d138-43fa-9f8d-f8228ac2555f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001630Z:97046be7-0112-4af7-b03b-db45afd60a85"
+ "WESTUS:20220401T190255Z:69e00277-d138-43fa-9f8d-f8228ac2555f"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:29 GMT"
+ "Fri, 01 Apr 2022 19:02:55 GMT"
],
"Content-Length": [
- "985"
+ "1012"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -666,17 +666,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps9098\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps2642\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:16:28.07Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps84\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/apis\",\r\n \"displayName\": \"ps4599\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:02:53.913Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps84?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzODQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e34d40d-f01f-4ba8-a1c2-815644119187"
+ "de86db63-47d3-414c-99f2-56b054393fc3"
],
"If-Match": [
"*"
@@ -685,10 +685,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -705,7 +705,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a0813fcf-8e8b-429b-a1e6-d8875cbf2eb8"
+ "8d4897c7-1fc3-42f6-801a-658d25e3f3e4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -714,13 +714,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "7cd53f48-538f-47f6-b10d-297d6571af5d"
+ "8d4897c7-1fc3-42f6-801a-658d25e3f3e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001630Z:7cd53f48-538f-47f6-b10d-297d6571af5d"
+ "WESTUS:20220401T190255Z:8d4897c7-1fc3-42f6-801a-658d25e3f3e4"
],
"Date": [
- "Tue, 13 Jul 2021 00:16:30 GMT"
+ "Fri, 01 Apr 2022 19:02:55 GMT"
],
"Expires": [
"-1"
@@ -735,16 +735,16 @@
],
"Names": {
"": [
- "ps9098",
- "ps8964",
- "ps7489",
- "ps818",
- "ps2642",
- "ps2935",
- "ps9155"
+ "ps84",
+ "ps4883",
+ "ps101",
+ "ps1764",
+ "ps4599",
+ "ps5900",
+ "ps3689"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json
index 25d3318d8f6b..632b518dd2e2 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "163dfbdf-efb2-4f4d-9566-32b91274096a"
+ "26890a97-283f-4730-b409-c298dffdf5a5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "7818b46a-3cc9-496d-941b-4cf03db7948b"
+ "0b910d61-1406-4640-b1b5-9b161fe89cbc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "f1804831-0f2b-447b-b6ff-7b5d15056a8b"
+ "0b910d61-1406-4640-b1b5-9b161fe89cbc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001322Z:f1804831-0f2b-447b-b6ff-7b5d15056a8b"
+ "WESTCENTRALUS:20220401T190000Z:0b910d61-1406-4640-b1b5-9b161fe89cbc"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:22 GMT"
+ "Fri, 01 Apr 2022 19:00:00 GMT"
],
"Content-Length": [
- "2859"
+ "2939"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e79af4ba-5885-43f3-b5be-e49113543cb2"
+ "5f68c240-ab26-46bd-802b-4d5c20b50bd7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,7 +90,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACOo=\""
+ "\"AAAAAAAACO8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -99,7 +99,7 @@
"nosniff"
],
"x-ms-request-id": [
- "f3d4d768-0b6e-446d-bace-b6a3400c6f6f"
+ "edfc4783-3930-46be-8e6a-9965ec6419cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,16 +108,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "b6e6f143-a4da-475b-b185-070425a67a33"
+ "edfc4783-3930-46be-8e6a-9965ec6419cb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001322Z:b6e6f143-a4da-475b-b185-070425a67a33"
+ "WESTCENTRALUS:20220401T190001Z:edfc4783-3930-46be-8e6a-9965ec6419cb"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:22 GMT"
+ "Fri, 01 Apr 2022 19:00:01 GMT"
],
"Content-Length": [
- "931"
+ "961"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +126,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMS9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0af2edb9-4bf0-4df2-8143-a340f6c9a4b2"
+ "e7c7b113-d4c0-4b99-8f44-a0d4f14798cd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,7 +156,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACOo=\""
+ "\"AAAAAAAACO8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -165,7 +165,7 @@
"nosniff"
],
"x-ms-request-id": [
- "413a966e-547f-492e-bc3e-212ade719a7c"
+ "71fe4158-5b3f-4e46-825b-fe9fc6ee0c04"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -174,13 +174,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "dbba592c-842f-4ffd-b01a-a776a42447dc"
+ "71fe4158-5b3f-4e46-825b-fe9fc6ee0c04"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001322Z:dbba592c-842f-4ffd-b01a-a776a42447dc"
+ "WESTCENTRALUS:20220401T190001Z:71fe4158-5b3f-4e46-825b-fe9fc6ee0c04"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:22 GMT"
+ "Fri, 01 Apr 2022 19:00:01 GMT"
],
"Content-Length": [
"99"
@@ -192,26 +192,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"a0d34bc2bc8b44c89e95163bb2bdf46b\",\r\n \"secondaryKey\": \"fd1d7dd4b20b4528aef6a93e1b91fe95\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"bfdd6f84c4744c02b83bd20dfcb0e3a7\",\r\n \"secondaryKey\": \"39643ff2202b4130a6635b654a282ff3\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a46bf76-e383-4ca9-bdad-33250afae1a2"
+ "3c6de01b-e99a-4f84-8e66-05b0c115ae4c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -222,7 +222,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACOs=\""
+ "\"AAAAAAAACPA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -231,7 +231,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5dd12459-3b44-4631-bb89-c93b3e84c707"
+ "cc28467c-f8b2-459c-9c64-1763f21e9be3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,16 +240,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "094540f7-2f6a-48b6-be68-fcf48861b1dc"
+ "cc28467c-f8b2-459c-9c64-1763f21e9be3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001323Z:094540f7-2f6a-48b6-be68-fcf48861b1dc"
+ "WESTCENTRALUS:20220401T190001Z:cc28467c-f8b2-459c-9c64-1763f21e9be3"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:23 GMT"
+ "Fri, 01 Apr 2022 19:00:01 GMT"
],
"Content-Length": [
- "933"
+ "963"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,26 +258,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070002/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zLzYyNDYyZDg0OWQzOThkMDA1YTA3MDAwMi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3afed9c7-95aa-40ce-943a-2d24be838ce2"
+ "55a0a282-18ea-40eb-9e1d-12183b68ca6a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -288,7 +288,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACOs=\""
+ "\"AAAAAAAACPA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -297,7 +297,7 @@
"nosniff"
],
"x-ms-request-id": [
- "fcf1714c-6d36-4f43-a7c7-57f732dfd459"
+ "e05a2acd-687d-46f4-b7e4-83bccb7f1f9d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,13 +306,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "a8c977bf-fd59-4382-9083-77d39677c2b7"
+ "e05a2acd-687d-46f4-b7e4-83bccb7f1f9d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001323Z:a8c977bf-fd59-4382-9083-77d39677c2b7"
+ "WESTCENTRALUS:20220401T190002Z:e05a2acd-687d-46f4-b7e4-83bccb7f1f9d"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:23 GMT"
+ "Fri, 01 Apr 2022 19:00:01 GMT"
],
"Content-Length": [
"99"
@@ -324,26 +324,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"64fc222570e6440e9f42a919448b9c5f\",\r\n \"secondaryKey\": \"a376e57b76384853ae2f526820806f9d\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"d70ce4a5f963431c862fc3f2ace165e1\",\r\n \"secondaryKey\": \"39441707cffb445aac14308fe4931086\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL21hc3Rlcj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfc65629-1bf1-479f-a2db-aacebbf8d8d2"
+ "03797c6a-0e5e-4aa3-94b4-55e883f9c33b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -354,7 +354,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACP8=\""
+ "\"AAAAAAAACQo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -363,7 +363,7 @@
"nosniff"
],
"x-ms-request-id": [
- "17b06b3a-aef7-4954-aafa-12b22c7f9ace"
+ "3bb0567d-65b9-4059-bfd0-c176a9a586f5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +372,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "2893dc58-2a6c-4f36-899f-cfdc2b52ccec"
+ "3bb0567d-65b9-4059-bfd0-c176a9a586f5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001323Z:2893dc58-2a6c-4f36-899f-cfdc2b52ccec"
+ "WESTCENTRALUS:20220401T190002Z:3bb0567d-65b9-4059-bfd0-c176a9a586f5"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:23 GMT"
+ "Fri, 01 Apr 2022 19:00:01 GMT"
],
"Content-Length": [
- "737"
+ "757"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -390,26 +390,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:17:12.643Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T23:29:31.403Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/master/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL21hc3Rlci9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "011384e2-c7dc-4523-b709-5755bbd3124a"
+ "cfcd74d6-b7e7-4822-ad1c-16b8ee0e7ad4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -420,7 +420,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACP8=\""
+ "\"AAAAAAAACQo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -429,7 +429,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2fa5217c-e885-4380-8ee6-ec7871491955"
+ "ebd79620-adfb-4f53-adb1-18dc557bcd2c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,13 +438,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "6e500eed-62fe-4bb3-bf35-781c97e369f7"
+ "ebd79620-adfb-4f53-adb1-18dc557bcd2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001323Z:6e500eed-62fe-4bb3-bf35-781c97e369f7"
+ "WESTCENTRALUS:20220401T190002Z:ebd79620-adfb-4f53-adb1-18dc557bcd2c"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:23 GMT"
+ "Fri, 01 Apr 2022 19:00:02 GMT"
],
"Content-Length": [
"99"
@@ -456,17 +456,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"7a85d57e060b450fa087af871acc9be6\",\r\n \"secondaryKey\": \"4cc63f6a55ec4d0b9bc01ab8614fecd7\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"db4b8df5d4254894b79493b1dd44ecb6\",\r\n \"secondaryKey\": \"bd0dd760bdaf4dbfa8fccdaf4619f630\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 100\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b167b1c-b266-4c95-bce5-988373958ca8"
+ "35f44d04-5b9c-41e4-a98e-b74adbc18363"
],
"If-Match": [
"*"
@@ -475,10 +475,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -495,7 +495,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA//c=\""
+ "\"AAAAAAAADA4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -504,7 +504,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b4d40c74-641d-4275-9a60-04973e8b99b9"
+ "8b71a893-3ad1-44a3-be6c-b3a7e973e9cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -513,16 +513,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "6c661855-25cc-4ffc-8776-e3ad1c5e4b42"
+ "8b71a893-3ad1-44a3-be6c-b3a7e973e9cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001323Z:6c661855-25cc-4ffc-8776-e3ad1c5e4b42"
+ "WESTCENTRALUS:20220401T190003Z:8b71a893-3ad1-44a3-be6c-b3a7e973e9cf"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:23 GMT"
+ "Fri, 01 Apr 2022 19:00:03 GMT"
],
"Content-Length": [
- "577"
+ "587"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -531,26 +531,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\",\r\n \"groups\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\",\r\n \"groups\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps3509\",\r\n \"primaryKey\": \"ps8556\",\r\n \"secondaryKey\": \"ps9821\",\r\n \"state\": \"active\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps1086\",\r\n \"primaryKey\": \"ps5940\",\r\n \"secondaryKey\": \"ps9034\",\r\n \"state\": \"active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9a3dd39-4b7e-4c9e-8cfe-17e6d0c91939"
+ "514b7724-3b49-435c-8818-5a34fde44d7d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -567,7 +567,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAFA=\""
+ "\"AAAAAAAADBU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -576,7 +576,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e2e31a2c-20ac-4202-b741-707af4026b9c"
+ "06704fd0-fe29-4130-9c3b-d930e341eec6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -585,16 +585,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "a00ad990-e9c7-4775-a3bb-30921fec39e9"
+ "06704fd0-fe29-4130-9c3b-d930e341eec6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001325Z:a00ad990-e9c7-4775-a3bb-30921fec39e9"
+ "WESTCENTRALUS:20220401T190005Z:06704fd0-fe29-4130-9c3b-d930e341eec6"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:25 GMT"
+ "Fri, 01 Apr 2022 19:00:05 GMT"
],
"Content-Length": [
- "1384"
+ "1424"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -603,17 +603,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps3509\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6009065Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps8556\",\r\n \"secondaryKey\": \"ps9821\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps1086\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.5377144Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5940\",\r\n \"secondaryKey\": \"ps9034\",\r\n \"stateComment\": null\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps1314\",\r\n \"primaryKey\": \"ps2454\",\r\n \"secondaryKey\": \"ps4942\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps4757\",\r\n \"primaryKey\": \"ps6666\",\r\n \"secondaryKey\": \"ps1510\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b252f27-292f-4c75-9be8-802fda6856b2"
+ "deecc6e4-fe9b-44ac-9fc8-a62bbf1aed26"
],
"If-Match": [
"*"
@@ -622,10 +622,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -642,7 +642,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAFQ=\""
+ "\"AAAAAAAADBk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -651,25 +651,25 @@
"nosniff"
],
"x-ms-request-id": [
- "6857ddbb-bdb8-4585-a981-c3fead1852a8"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "a7d94c5a-de9f-4118-ae66-6a137b884ca7"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "0ccc4e7d-a241-4a24-b92c-5bfcc8f96f0f"
+ "a7d94c5a-de9f-4118-ae66-6a137b884ca7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001326Z:0ccc4e7d-a241-4a24-b92c-5bfcc8f96f0f"
+ "WESTCENTRALUS:20220401T190007Z:a7d94c5a-de9f-4118-ae66-6a137b884ca7"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:26 GMT"
+ "Fri, 01 Apr 2022 19:00:07 GMT"
],
"Content-Length": [
- "1441"
+ "1483"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -678,26 +678,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps2454\",\r\n \"secondaryKey\": \"ps4942\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"primaryKey\": \"ps6666\",\r\n \"secondaryKey\": \"ps1510\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b252f27-292f-4c75-9be8-802fda6856b2"
+ "deecc6e4-fe9b-44ac-9fc8-a62bbf1aed26"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -708,7 +708,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAFQ=\""
+ "\"AAAAAAAADBk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -717,7 +717,7 @@
"nosniff"
],
"x-ms-request-id": [
- "18cb3366-a6a0-4ded-a37c-c97d3727eac5"
+ "79de116c-ffb6-483f-8510-124d09f8bc80"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -726,16 +726,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "048fd4a7-2cfd-4762-b949-28b1ded4d7e0"
+ "79de116c-ffb6-483f-8510-124d09f8bc80"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001326Z:048fd4a7-2cfd-4762-b949-28b1ded4d7e0"
+ "WESTCENTRALUS:20220401T190008Z:79de116c-ffb6-483f-8510-124d09f8bc80"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:26 GMT"
+ "Fri, 01 Apr 2022 19:00:07 GMT"
],
"Content-Length": [
- "951"
+ "983"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -744,26 +744,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2157dbcb-6ccd-49e0-985e-f2879ae21153"
+ "bfbde45a-16ad-4f8d-94a1-3baaa501f745"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -774,7 +774,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAFQ=\""
+ "\"AAAAAAAADBk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -783,7 +783,7 @@
"nosniff"
],
"x-ms-request-id": [
- "dcca35e3-13a1-49e8-bb80-d259ed05ffad"
+ "e822efc9-3cc3-42bf-aa05-524f89051273"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -792,13 +792,13 @@
"1196"
],
"x-ms-correlation-request-id": [
- "c2fcdb0f-9936-47b7-b320-f42e7a4608a6"
+ "e822efc9-3cc3-42bf-aa05-524f89051273"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001326Z:c2fcdb0f-9936-47b7-b320-f42e7a4608a6"
+ "WESTCENTRALUS:20220401T190008Z:e822efc9-3cc3-42bf-aa05-524f89051273"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:26 GMT"
+ "Fri, 01 Apr 2022 19:00:08 GMT"
],
"Content-Length": [
"47"
@@ -810,26 +810,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps2454\",\r\n \"secondaryKey\": \"ps4942\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps6666\",\r\n \"secondaryKey\": \"ps1510\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/subscriptions?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9wcm9kdWN0cy9zdGFydGVyL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ec21bf7-c1dd-489c-9acf-261b38b77315"
+ "bc29a60c-08e7-432d-949e-00a3fda2bc5c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -846,7 +846,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d95f345d-bc72-42a3-a20e-4be20dfa9b3f"
+ "dcb46fdd-b0c5-4b0e-80af-09b74c6466a2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -855,16 +855,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "97ff9133-d408-4ee3-885d-03a0d216075b"
+ "dcb46fdd-b0c5-4b0e-80af-09b74c6466a2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001327Z:97ff9133-d408-4ee3-885d-03a0d216075b"
+ "WESTCENTRALUS:20220401T190009Z:dcb46fdd-b0c5-4b0e-80af-09b74c6466a2"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:27 GMT"
+ "Fri, 01 Apr 2022 19:00:08 GMT"
],
"Content-Length": [
- "2121"
+ "2183"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -873,26 +873,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps4781\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5fc331b0-1c8c-40a3-8523-618d7c993f1c"
+ "5a88c286-bfa7-4ed2-9b6b-e1152e5291db"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -909,7 +909,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ea9ff1d5-d411-459b-9783-d0fbbc7146b5"
+ "51ad5ede-8007-47a4-a0cb-5750909d4c5c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -918,16 +918,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "1677d554-17dc-47e9-8934-c854dce7b4e7"
+ "51ad5ede-8007-47a4-a0cb-5750909d4c5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001328Z:1677d554-17dc-47e9-8934-c854dce7b4e7"
+ "WESTCENTRALUS:20220401T190010Z:51ad5ede-8007-47a4-a0cb-5750909d4c5c"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:28 GMT"
+ "Fri, 01 Apr 2022 19:00:09 GMT"
],
"Content-Length": [
- "3119"
+ "3211"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -936,26 +936,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps4781\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions/62462d849d398d005a070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"62462d849d398d005a070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.957Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?$filter=properties/scope%20eq%20'/products/starter'%20and%20properties/ownerId%20eq%20'1'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/JGZpbHRlcj1wcm9wZXJ0aWVzL3Njb3BlJTIwZXElMjAnL3Byb2R1Y3RzL3N0YXJ0ZXInJTIwYW5kJTIwcHJvcGVydGllcy9vd25lcklkJTIwZXElMjAnMScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions?$filter=properties/scope%20eq%20'/products/starter'%20and%20properties/ownerId%20eq%20'1'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zPyRmaWx0ZXI9cHJvcGVydGllcy9zY29wZSUyMGVxJTIwJy9wcm9kdWN0cy9zdGFydGVyJyUyMGFuZCUyMHByb3BlcnRpZXMvb3duZXJJZCUyMGVxJTIwJzEnJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05118c6a-095a-4dd3-9f1c-623cce29ca04"
+ "0f93f8e0-0a76-4f9c-92fd-df989db6874e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -972,7 +972,7 @@
"nosniff"
],
"x-ms-request-id": [
- "dc180a39-38d8-4b46-9fe9-d6ca3b6c0c98"
+ "3fd6adfa-e589-4156-ab52-2900894072df"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -981,16 +981,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "c8b08084-0e25-470e-86c2-61522b5a1dde"
+ "3fd6adfa-e589-4156-ab52-2900894072df"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001328Z:c8b08084-0e25-470e-86c2-61522b5a1dde"
+ "WESTCENTRALUS:20220401T190010Z:3fd6adfa-e589-4156-ab52-2900894072df"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:28 GMT"
+ "Fri, 01 Apr 2022 19:00:10 GMT"
],
"Content-Length": [
- "2069"
+ "2131"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -999,17 +999,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps4781\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps1314\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2021-07-13T00:13:24.6Z\",\r\n \"startDate\": \"2021-07-13T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/62462d849d398d005a070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"62462d849d398d005a070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-03-31T22:39:00.483Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7787\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"scope\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/products/starter\",\r\n \"displayName\": \"ps4757\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2022-04-01T19:00:04.537Z\",\r\n \"startDate\": \"2022-04-01T00:00:00Z\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/subscriptions/ps7787?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC9zdWJzY3JpcHRpb25zL3BzNzc4Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "afd42db6-7dc6-4eaa-8777-d735a6a5bc13"
+ "4b2fa883-b129-4838-8c39-2ba9af43aa9e"
],
"If-Match": [
"*"
@@ -1018,10 +1018,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1038,7 +1038,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ce13bc32-72d5-4731-bfa8-26f6094505ba"
+ "7636ca6e-e9e0-4b0e-83cb-9c752f74dc47"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1047,13 +1047,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "d5c8c2a0-9b8e-497c-9021-caf99a38e859"
+ "7636ca6e-e9e0-4b0e-83cb-9c752f74dc47"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001329Z:d5c8c2a0-9b8e-497c-9021-caf99a38e859"
+ "WESTCENTRALUS:20220401T190011Z:7636ca6e-e9e0-4b0e-83cb-9c752f74dc47"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:29 GMT"
+ "Fri, 01 Apr 2022 19:00:10 GMT"
],
"Expires": [
"-1"
@@ -1068,16 +1068,16 @@
],
"Names": {
"": [
- "ps4781",
- "ps3509",
- "ps8556",
- "ps9821",
- "ps1314",
- "ps2454",
- "ps4942"
+ "ps7787",
+ "ps1086",
+ "ps5940",
+ "ps9034",
+ "ps4757",
+ "ps6666",
+ "ps1510"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json
index 21bbd7c2456b..e09d49229428 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "38a96fc9-38d3-42aa-a129-42ad9f00bfc4"
+ "a405a31f-1894-4726-929b-4f882ffded5d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -27,7 +27,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAEwAAAAAAAAAAA==\""
+ "\"AAAAAAAACHoAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36,7 +36,7 @@
"nosniff"
],
"x-ms-request-id": [
- "8dec4d77-1a49-44b8-99cb-97f520996535"
+ "b569738d-fc96-4fd7-ae40-4684bc763232"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -45,16 +45,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "adee698a-183a-4d0d-86a6-9926de562d53"
+ "b569738d-fc96-4fd7-ae40-4684bc763232"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T204803Z:adee698a-183a-4d0d-86a6-9926de562d53"
+ "WESTCENTRALUS:20220401T185954Z:b569738d-fc96-4fd7-ae40-4684bc763232"
],
"Date": [
- "Thu, 15 Jul 2021 20:48:03 GMT"
+ "Fri, 01 Apr 2022 18:59:54 GMT"
],
"Content-Length": [
- "382"
+ "392"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39d81ba8-6f56-4e27-a22f-8505ea9d3158"
+ "4b3c40e3-9233-4f50-8a32-7e492616056c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,7 +93,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABApEAAAAAAAAAAA==\""
+ "\"AAAAAAAADAwAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -102,7 +102,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e39281f5-fb93-4e3a-9ef9-e250a0e72e89"
+ "0e88a884-1cac-4875-8c46-55b4cfe5ec31"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +111,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "3a409d95-dbd4-42ab-ab5a-90e69e9f15b4"
+ "0e88a884-1cac-4875-8c46-55b4cfe5ec31"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T204804Z:3a409d95-dbd4-42ab-ab5a-90e69e9f15b4"
+ "WESTCENTRALUS:20220401T185955Z:0e88a884-1cac-4875-8c46-55b4cfe5ec31"
],
"Date": [
- "Thu, 15 Jul 2021 20:48:03 GMT"
+ "Fri, 01 Apr 2022 18:59:55 GMT"
],
"Content-Length": [
- "381"
+ "391"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03cdff3d-e505-443a-882d-f0a5e301c877"
+ "8d7a5785-1a48-4bcc-9ccc-74d0f0c861f7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,7 +159,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABApIAAAAAAAAAAA==\""
+ "\"AAAAAAAADA0AAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -168,7 +168,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a897c541-21e7-4209-83a4-80bafb55fe07"
+ "feec0dcb-aad3-4228-a769-c388dc5fdc7d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +177,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "657fea32-c96a-400b-9cbe-1ad59813479b"
+ "feec0dcb-aad3-4228-a769-c388dc5fdc7d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T204804Z:657fea32-c96a-400b-9cbe-1ad59813479b"
+ "WESTCENTRALUS:20220401T185956Z:feec0dcb-aad3-4228-a769-c388dc5fdc7d"
],
"Date": [
- "Thu, 15 Jul 2021 20:48:04 GMT"
+ "Fri, 01 Apr 2022 18:59:56 GMT"
],
"Content-Length": [
- "382"
+ "392"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,17 +195,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39d81ba8-6f56-4e27-a22f-8505ea9d3158"
+ "4b3c40e3-9233-4f50-8a32-7e492616056c"
],
"If-Match": [
"*"
@@ -214,10 +214,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -234,7 +234,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABApEAAAAAAAAAAA==\""
+ "\"AAAAAAAADAwAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -243,7 +243,7 @@
"nosniff"
],
"x-ms-request-id": [
- "cd725128-4592-4e8d-9436-25dcf7ce891f"
+ "c1af7781-7360-4bac-ab10-3a655ae2750c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,16 +252,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "f9c2e945-da1c-41c5-8f9f-e7957886df23"
+ "c1af7781-7360-4bac-ab10-3a655ae2750c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T204804Z:f9c2e945-da1c-41c5-8f9f-e7957886df23"
+ "WESTCENTRALUS:20220401T185955Z:c1af7781-7360-4bac-ab10-3a655ae2750c"
],
"Date": [
- "Thu, 15 Jul 2021 20:48:03 GMT"
+ "Fri, 01 Apr 2022 18:59:55 GMT"
],
"Content-Length": [
- "553"
+ "563"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -270,17 +270,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"ZNPswfVur5MiVUfGGr4CKd+dwLYETxNdJ4fNgwXVAsqRe5eHqK2FGeMCCc/sDXfThhVzMbAI3n7fLE79sRhwKw==\",\r\n \"secondaryKey\": \"fgb9HFXYivWgcDnOI5RSSZGd3U5O+xv9jIUoVZ6xHgtS4WBywJtuco5z6BHDlBM4Q7NDuDdR4rbd0y4hAk4bwQ==\",\r\n \"enabled\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"sMKlD5Vspecr4DbjJRlphBky/7OfIVibaX+yp1/5qL2daV3OxpCUR64fUfLSRJH8ZVezpdSD5U93395Z7t7cwg==\",\r\n \"secondaryKey\": \"4/4VShDWjvlomWYPiHZbquelv5sHPSAzUD1SgRy0UxQpssrB3EjzSJmOumMr6JUz+peU3HVDpQMKKs+je76cBQ==\",\r\n \"enabled\": true\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03cdff3d-e505-443a-882d-f0a5e301c877"
+ "8d7a5785-1a48-4bcc-9ccc-74d0f0c861f7"
],
"If-Match": [
"*"
@@ -289,10 +289,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -309,7 +309,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABApIAAAAAAAAAAA==\""
+ "\"AAAAAAAADA0AAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -318,7 +318,7 @@
"nosniff"
],
"x-ms-request-id": [
- "ab22be59-e09a-4b7a-a581-9aaaa77421fa"
+ "4e406dd6-39fe-40ae-8017-511a56187ea6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -327,16 +327,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "ace96c14-982d-4eb5-96e4-fa6e1efd6775"
+ "4e406dd6-39fe-40ae-8017-511a56187ea6"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210715T204804Z:ace96c14-982d-4eb5-96e4-fa6e1efd6775"
+ "WESTCENTRALUS:20220401T185956Z:4e406dd6-39fe-40ae-8017-511a56187ea6"
],
"Date": [
- "Thu, 15 Jul 2021 20:48:03 GMT"
+ "Fri, 01 Apr 2022 18:59:56 GMT"
],
"Content-Length": [
- "554"
+ "564"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -345,12 +345,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"ZNPswfVur5MiVUfGGr4CKd+dwLYETxNdJ4fNgwXVAsqRe5eHqK2FGeMCCc/sDXfThhVzMbAI3n7fLE79sRhwKw==\",\r\n \"secondaryKey\": \"fgb9HFXYivWgcDnOI5RSSZGd3U5O+xv9jIUoVZ6xHgtS4WBywJtuco5z6BHDlBM4Q7NDuDdR4rbd0y4hAk4bwQ==\",\r\n \"enabled\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/access\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant\",\r\n \"name\": \"access\",\r\n \"properties\": {\r\n \"principalId\": \"integration\",\r\n \"primaryKey\": \"sMKlD5Vspecr4DbjJRlphBky/7OfIVibaX+yp1/5qL2daV3OxpCUR64fUfLSRJH8ZVezpdSD5U93395Z7t7cwg==\",\r\n \"secondaryKey\": \"4/4VShDWjvlomWYPiHZbquelv5sHPSAzUD1SgRy0UxQpssrB3EjzSJmOumMr6JUz+peU3HVDpQMKKs+je76cBQ==\",\r\n \"enabled\": false\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json
index 887c8208f309..d2bd6a1a257a 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/gitaccess/listSecrets?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9naXRhY2Nlc3MvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/gitaccess/listSecrets?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvZ2l0YWNjZXNzL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c4f22bc-05e1-481e-b36a-7e3c6f4c8bb9"
+ "573a10a9-e072-4365-9d83-5e5094dab464"
],
"Accept-Language": [
"en-US"
@@ -15,8 +15,8 @@
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -27,7 +27,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAACHkAAAAAAAAAAA==\""
+ "\"AAAAAAAACHwAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -36,7 +36,7 @@
"nosniff"
],
"x-ms-request-id": [
- "775cd57f-235b-4387-b4c0-78eefd82bc3b"
+ "d02d0eba-d776-495a-b1ba-f3639ca9ff38"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -45,13 +45,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "8d77ebd1-656b-4fd8-b922-7c7724b4a283"
+ "d02d0eba-d776-495a-b1ba-f3639ca9ff38"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222435Z:8d77ebd1-656b-4fd8-b922-7c7724b4a283"
+ "WESTUS:20220406T002609Z:d02d0eba-d776-495a-b1ba-f3639ca9ff38"
],
"Date": [
- "Fri, 17 Sep 2021 22:24:35 GMT"
+ "Wed, 06 Apr 2022 00:26:08 GMT"
],
"Content-Length": [
"271"
@@ -63,17 +63,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/tenant/gitAccess\",\r\n \"principalId\": \"git\",\r\n \"primaryKey\": \"u35LIftSq1MOvsXWMXixVAi8aONxtSJJxQ3mVHbEpagUqYF9ZBxolsZkra4zX19zC0GayLx/PZnNEE6sfZp0lw==\",\r\n \"secondaryKey\": \"Bg8alqazxozwt0J5ba7teCNKjfWQ2qMO0dTxeTkiO2PlxfTR9YPDq5wpKu1Zfh7nI6kO+FcF1T26G6lIVHZrAw==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/tenant/gitAccess\",\r\n \"principalId\": \"git\",\r\n \"primaryKey\": \"rldMvFlCuN/i5460jwyDD5+GVw+A71hdNJiADzDvGPqjucNc7qSBBumyedPMjQHaaRFWdy/G5+Xm/Aa6WPhqeA==\",\r\n \"secondaryKey\": \"Gd3WaaKbNpRvPXfG9y0YkJOy4YjndxEcxVS+HnkenlKdPeVMmgiNeZNCc72XnWP1qxldgzwRjAHrIxnyhx0o2Q==\",\r\n \"enabled\": true\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fa324d6-a354-469b-af16-c3fd85797afc"
+ "919ad17a-96ff-4cce-b8e0-a303c5fd6d6d"
],
"Accept-Language": [
"en-US"
@@ -81,8 +81,8 @@
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,7 +99,7 @@
"nosniff"
],
"x-ms-request-id": [
- "44cfc284-c356-4287-9315-f1ac96ecef80"
+ "24c486dd-51db-4df5-9bc1-9997a8984fbc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,16 +108,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "1ed46aec-b2cf-478f-bc2d-346a1d856192"
+ "24c486dd-51db-4df5-9bc1-9997a8984fbc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222436Z:1ed46aec-b2cf-478f-bc2d-346a1d856192"
+ "WESTUS:20220406T002609Z:24c486dd-51db-4df5-9bc1-9997a8984fbc"
],
"Date": [
- "Fri, 17 Sep 2021 22:24:36 GMT"
+ "Wed, 06 Apr 2022 00:26:08 GMT"
],
"Content-Length": [
- "810"
+ "829"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +126,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"bb062fbbd292ba1fd99e7af77d4c78bed459c65f\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-07-28T21:26:25.0687094Z\",\r\n \"configurationChangeDate\": \"2021-07-28T21:26:25.0687094Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101cb6946346111804bdc10\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"3bf9713ea534863db41ad8921cd2b7192aeb829d\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2022-04-06T00:25:02.3462962Z\",\r\n \"configurationChangeDate\": \"2022-04-06T00:13:59.7725429Z\",\r\n \"lastOperationId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cddfa01234e10f00b7b82\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "adca889f-b81e-43ba-9c36-2bf375783107"
+ "30851e79-eb9c-4042-ba2a-47e0a71bb05b"
],
"Accept-Language": [
"en-US"
@@ -144,8 +144,8 @@
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"nosniff"
],
"x-ms-request-id": [
- "08fad1d5-4d62-4c55-aa5b-0d19cf73e142"
+ "81dd92ec-367c-489f-8e1d-6a53f514e989"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +171,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "4bebfd26-e5f0-47b1-9ef5-65a51fd3333a"
+ "81dd92ec-367c-489f-8e1d-6a53f514e989"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222541Z:4bebfd26-e5f0-47b1-9ef5-65a51fd3333a"
+ "WESTUS:20220406T002710Z:81dd92ec-367c-489f-8e1d-6a53f514e989"
],
"Date": [
- "Fri, 17 Sep 2021 22:25:40 GMT"
+ "Wed, 06 Apr 2022 00:27:09 GMT"
],
"Content-Length": [
- "809"
+ "829"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -189,17 +189,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"f30346b6e6e515a9b933b3a9547abde67c2defd6\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-09-17T22:25:28.4185288Z\",\r\n \"configurationChangeDate\": \"2021-07-28T21:26:25.0531137Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"238138b01f8730a9e0cc29401e7504cff8b317aa\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2022-04-06T00:26:44.4567126Z\",\r\n \"configurationChangeDate\": \"2022-04-06T00:13:59.7725429Z\",\r\n \"lastOperationId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "446a16e8-51a2-4f7a-99b1-8569708202fd"
+ "d47a0f23-29a7-4344-b015-f3a28a8c047b"
],
"Accept-Language": [
"en-US"
@@ -207,8 +207,8 @@
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,7 +225,7 @@
"nosniff"
],
"x-ms-request-id": [
- "6f6712b0-066a-4ebf-8aee-08c65e7a1087"
+ "d6f8f279-55a8-4bb5-b82e-c6d623cb2a3d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -234,16 +234,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "9516f197-d0d6-4bc6-8286-4e906d9ab9bb"
+ "d6f8f279-55a8-4bb5-b82e-c6d623cb2a3d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222712Z:9516f197-d0d6-4bc6-8286-4e906d9ab9bb"
+ "WESTUS:20220406T002841Z:d6f8f279-55a8-4bb5-b82e-c6d623cb2a3d"
],
"Date": [
- "Fri, 17 Sep 2021 22:27:12 GMT"
+ "Wed, 06 Apr 2022 00:28:40 GMT"
],
"Content-Length": [
- "810"
+ "830"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -252,17 +252,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"f30346b6e6e515a9b933b3a9547abde67c2defd6\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-09-17T22:26:59.6693037Z\",\r\n \"configurationChangeDate\": \"2021-09-17T22:26:59.6693037Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/syncState\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/syncState\",\r\n \"name\": \"syncState\",\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"commitId\": \"238138b01f8730a9e0cc29401e7504cff8b317aa\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2022-04-06T00:28:36.1295102Z\",\r\n \"configurationChangeDate\": \"2022-04-06T00:28:36.1295102Z\",\r\n \"lastOperationId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/save?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3NhdmU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/save?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9zYXZlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69319c90-9651-4877-a38c-df30ecc997b8"
+ "3c7d1932-c888-452e-a564-a56347870f3b"
],
"Accept-Language": [
"en-US"
@@ -270,8 +270,8 @@
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -288,7 +288,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -297,7 +297,7 @@
"nosniff"
],
"x-ms-request-id": [
- "2ed72760-6539-473c-82e3-8569bd081e3b"
+ "0ae6b1cc-d536-489a-a11e-5e74e11e3b9f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,13 +306,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "2796e9b0-05d6-4499-ba99-79d00b99e3ff"
+ "0ae6b1cc-d536-489a-a11e-5e74e11e3b9f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222440Z:2796e9b0-05d6-4499-ba99-79d00b99e3ff"
+ "WESTUS:20220406T002609Z:0ae6b1cc-d536-489a-a11e-5e74e11e3b9f"
],
"Date": [
- "Fri, 17 Sep 2021 22:24:40 GMT"
+ "Wed, 06 Apr 2022 00:26:08 GMT"
],
"Content-Length": [
"33"
@@ -324,23 +324,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1YTU0NjM0NjEwZDJjODAzNzFkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTIxMDEyMzRlMTBmMDBiN2I4ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69319c90-9651-4877-a38c-df30ecc997b8"
+ "3c7d1932-c888-452e-a564-a56347870f3b"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,7 +351,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -360,7 +360,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a8a8bee4-51a8-4270-80f6-95137218a71f"
+ "2073dd46-724a-43cd-b21b-92f3fe3414a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -369,13 +369,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f5dc8517-f6a1-4128-ad6d-5337f7633749"
+ "2073dd46-724a-43cd-b21b-92f3fe3414a5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222510Z:f5dc8517-f6a1-4128-ad6d-5337f7633749"
+ "WESTUS:20220406T002639Z:2073dd46-724a-43cd-b21b-92f3fe3414a5"
],
"Date": [
- "Fri, 17 Sep 2021 22:25:10 GMT"
+ "Wed, 06 Apr 2022 00:26:39 GMT"
],
"Content-Length": [
"335"
@@ -387,23 +387,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515a54634610d2c80371d\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2021-09-17T22:24:37.023Z\",\r\n \"updated\": \"2021-09-17T22:24:37.023Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde2101234e10f00b7b84\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2022-04-06T00:26:09.483Z\",\r\n \"updated\": \"2022-04-06T00:26:09.483Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1YTU0NjM0NjEwZDJjODAzNzFkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTIxMDEyMzRlMTBmMDBiN2I4ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69319c90-9651-4877-a38c-df30ecc997b8"
+ "3c7d1932-c888-452e-a564-a56347870f3b"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -420,25 +420,25 @@
"nosniff"
],
"x-ms-request-id": [
- "76a34f15-cfef-4791-a03b-11623a9a3f67"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "c9b86120-0201-48cc-ae7e-47d6ded2943c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
"x-ms-correlation-request-id": [
- "a47a0d5b-5308-45ac-9ec1-ff6cff0e6760"
+ "c9b86120-0201-48cc-ae7e-47d6ded2943c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222540Z:a47a0d5b-5308-45ac-9ec1-ff6cff0e6760"
+ "WESTUS:20220406T002709Z:c9b86120-0201-48cc-ae7e-47d6ded2943c"
],
"Date": [
- "Fri, 17 Sep 2021 22:25:39 GMT"
+ "Wed, 06 Apr 2022 00:27:09 GMT"
],
"Content-Length": [
- "456"
+ "455"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -447,23 +447,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515a54634610d2c80371d\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:24:37.023Z\",\r\n \"updated\": \"2021-09-17T22:25:28.373Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit f30346b6e6e515a9b933b3a9547abde67c2defd6.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde2101234e10f00b7b84\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:26:09.483Z\",\r\n \"updated\": \"2022-04-06T00:26:44.45Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 238138b01f8730a9e0cc29401e7504cff8b317aa.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515a54634610d2c80371d?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1YTU0NjM0NjEwZDJjODAzNzFkP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde2101234e10f00b7b84?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTIxMDEyMzRlMTBmMDBiN2I4ND9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69319c90-9651-4877-a38c-df30ecc997b8"
+ "3c7d1932-c888-452e-a564-a56347870f3b"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -480,7 +480,7 @@
"nosniff"
],
"x-ms-request-id": [
- "92143973-83e6-4c29-b190-b734f63e6726"
+ "79c229c3-9f91-4360-a3e1-a3544ecb256c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -489,16 +489,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "9d5214c4-9ba8-452c-a3b0-7e64feea4ca3"
+ "79c229c3-9f91-4360-a3e1-a3544ecb256c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222541Z:9d5214c4-9ba8-452c-a3b0-7e64feea4ca3"
+ "WESTUS:20220406T002710Z:79c229c3-9f91-4360-a3e1-a3544ecb256c"
],
"Date": [
- "Fri, 17 Sep 2021 22:25:40 GMT"
+ "Wed, 06 Apr 2022 00:27:09 GMT"
],
"Content-Length": [
- "456"
+ "455"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -507,17 +507,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614515a54634610d2c80371d\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515a54634610d2c80371d\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:24:37.023Z\",\r\n \"updated\": \"2021-09-17T22:25:28.373Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit f30346b6e6e515a9b933b3a9547abde67c2defd6.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde2101234e10f00b7b84\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde2101234e10f00b7b84\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:26:09.483Z\",\r\n \"updated\": \"2022-04-06T00:26:44.45Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 238138b01f8730a9e0cc29401e7504cff8b317aa.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/validate?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/validate?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f1a4076-3ee1-4a86-81d2-13367d15de10"
+ "7d2d77ec-cc93-46d3-b8a5-7f2ccf9f21b8"
],
"Accept-Language": [
"en-US"
@@ -525,8 +525,8 @@
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -543,7 +543,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515e54634610d2c80371f?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde5e01234e10f00b7b86?api-version=2021-08-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -552,7 +552,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c8fd690d-6328-4d7c-a8f6-7c52bbdf17ed"
+ "19d261ca-cc8a-41eb-9ed5-68cd3f9e3a4e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -561,13 +561,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "e44a9e4f-e4bd-48b6-b598-8cdd0ed7d30f"
+ "19d261ca-cc8a-41eb-9ed5-68cd3f9e3a4e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222541Z:e44a9e4f-e4bd-48b6-b598-8cdd0ed7d30f"
+ "WESTUS:20220406T002710Z:19d261ca-cc8a-41eb-9ed5-68cd3f9e3a4e"
],
"Date": [
- "Fri, 17 Sep 2021 22:25:40 GMT"
+ "Wed, 06 Apr 2022 00:27:10 GMT"
],
"Content-Length": [
"33"
@@ -579,23 +579,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614515e54634610d2c80371f\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde5e01234e10f00b7b86\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515e54634610d2c80371f?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1ZTU0NjM0NjEwZDJjODAzNzFmP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde5e01234e10f00b7b86?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTVlMDEyMzRlMTBmMDBiN2I4Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f1a4076-3ee1-4a86-81d2-13367d15de10"
+ "7d2d77ec-cc93-46d3-b8a5-7f2ccf9f21b8"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -612,7 +612,7 @@
"nosniff"
],
"x-ms-request-id": [
- "906f3040-5c49-499f-9bda-a0de30349c25"
+ "41a4d711-96ea-4984-b817-3479687b19ae"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -621,16 +621,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "0654ca53-6875-40a1-a319-909888819743"
+ "41a4d711-96ea-4984-b817-3479687b19ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222611Z:0654ca53-6875-40a1-a319-909888819743"
+ "WESTUS:20220406T002740Z:41a4d711-96ea-4984-b817-3479687b19ae"
],
"Date": [
- "Fri, 17 Sep 2021 22:26:10 GMT"
+ "Wed, 06 Apr 2022 00:27:39 GMT"
],
"Content-Length": [
- "378"
+ "516"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -639,23 +639,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614515e54634610d2c80371f\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515e54634610d2c80371f\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:25:41.45Z\",\r\n \"updated\": \"2021-09-17T22:25:59.733Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde5e01234e10f00b7b86\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde5e01234e10f00b7b86\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:10.273Z\",\r\n \"updated\": \"2022-04-06T00:27:23.697Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614515e54634610d2c80371f?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE1ZTU0NjM0NjEwZDJjODAzNzFmP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde5e01234e10f00b7b86?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTVlMDEyMzRlMTBmMDBiN2I4Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f1a4076-3ee1-4a86-81d2-13367d15de10"
+ "7d2d77ec-cc93-46d3-b8a5-7f2ccf9f21b8"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -672,7 +672,7 @@
"nosniff"
],
"x-ms-request-id": [
- "54297c8b-b314-4780-9d28-c5bbad2f0d8b"
+ "2661da71-5b34-4ed3-9340-483330e3268d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -681,16 +681,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "73f3c7bb-a261-4774-810e-3c97f1891b2d"
+ "2661da71-5b34-4ed3-9340-483330e3268d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222611Z:73f3c7bb-a261-4774-810e-3c97f1891b2d"
+ "WESTUS:20220406T002740Z:2661da71-5b34-4ed3-9340-483330e3268d"
],
"Date": [
- "Fri, 17 Sep 2021 22:26:10 GMT"
+ "Wed, 06 Apr 2022 00:27:39 GMT"
],
"Content-Length": [
- "378"
+ "516"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -699,17 +699,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614515e54634610d2c80371f\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614515e54634610d2c80371f\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:25:41.45Z\",\r\n \"updated\": \"2021-09-17T22:25:59.733Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde5e01234e10f00b7b86\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde5e01234e10f00b7b86\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:10.273Z\",\r\n \"updated\": \"2022-04-06T00:27:23.697Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/deploy?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL2RlcGxveT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/deploy?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9kZXBsb3k/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08de2e7d-2d35-4be6-a795-600799503663"
+ "4d0b2104-9803-4790-8c19-4cab8b55eb4a"
],
"Accept-Language": [
"en-US"
@@ -717,8 +717,8 @@
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -735,7 +735,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -744,7 +744,7 @@
"nosniff"
],
"x-ms-request-id": [
- "0c10a36c-3ec6-4160-ba4a-7983beede41e"
+ "7d2bc757-a238-4b5d-9a5f-dd984c8b35a9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -753,13 +753,13 @@
"1196"
],
"x-ms-correlation-request-id": [
- "ddfd81ea-54d5-402e-8dd2-ce5781e60ee6"
+ "7d2bc757-a238-4b5d-9a5f-dd984c8b35a9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222612Z:ddfd81ea-54d5-402e-8dd2-ce5781e60ee6"
+ "WESTUS:20220406T002740Z:7d2bc757-a238-4b5d-9a5f-dd984c8b35a9"
],
"Date": [
- "Fri, 17 Sep 2021 22:26:11 GMT"
+ "Wed, 06 Apr 2022 00:27:39 GMT"
],
"Content-Length": [
"33"
@@ -771,23 +771,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE2MDM0NjM0NjEwZDJjODAzNzIxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTdjMDEyMzRlMTBmMDBiN2I4OD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08de2e7d-2d35-4be6-a795-600799503663"
+ "4d0b2104-9803-4790-8c19-4cab8b55eb4a"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -798,7 +798,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -807,7 +807,7 @@
"nosniff"
],
"x-ms-request-id": [
- "b03d25d7-9040-46fe-93e0-95787005ec81"
+ "7330e166-7932-40ef-ae51-8d2efd788079"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -816,16 +816,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "9b8e24ee-55fc-4cfe-b353-3359383d5582"
+ "7330e166-7932-40ef-ae51-8d2efd788079"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222642Z:9b8e24ee-55fc-4cfe-b353-3359383d5582"
+ "WESTUS:20220406T002810Z:7330e166-7932-40ef-ae51-8d2efd788079"
],
"Date": [
- "Fri, 17 Sep 2021 22:26:42 GMT"
+ "Wed, 06 Apr 2022 00:28:10 GMT"
],
"Content-Length": [
- "331"
+ "335"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -834,23 +834,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614516034634610d2c803721\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2021-09-17T22:26:11.9Z\",\r\n \"updated\": \"2021-09-17T22:26:11.9Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde7c01234e10f00b7b88\",\r\n \"properties\": {\r\n \"status\": \"InProgress\",\r\n \"started\": \"2022-04-06T00:27:40.763Z\",\r\n \"updated\": \"2022-04-06T00:27:40.763Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE2MDM0NjM0NjEwZDJjODAzNzIxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTdjMDEyMzRlMTBmMDBiN2I4OD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08de2e7d-2d35-4be6-a795-600799503663"
+ "4d0b2104-9803-4790-8c19-4cab8b55eb4a"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -867,7 +867,7 @@
"nosniff"
],
"x-ms-request-id": [
- "838769af-5638-4573-b2a6-559456c8fd6c"
+ "67981f8b-56f2-4f3d-aef6-2f8c81e95381"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -876,16 +876,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "8b25a8d8-5841-4cb1-8bb9-a3f8b9891cdb"
+ "67981f8b-56f2-4f3d-aef6-2f8c81e95381"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222712Z:8b25a8d8-5841-4cb1-8bb9-a3f8b9891cdb"
+ "WESTUS:20220406T002841Z:67981f8b-56f2-4f3d-aef6-2f8c81e95381"
],
"Date": [
- "Fri, 17 Sep 2021 22:27:12 GMT"
+ "Wed, 06 Apr 2022 00:28:40 GMT"
],
"Content-Length": [
- "559"
+ "698"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -894,23 +894,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614516034634610d2c803721\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:26:11.9Z\",\r\n \"updated\": \"2021-09-17T22:26:59.657Z\",\r\n \"resultInfo\": \"Latest commit f30346b6e6e515a9b933b3a9547abde67c2defd6 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde7c01234e10f00b7b88\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:40.763Z\",\r\n \"updated\": \"2022-04-06T00:28:36.117Z\",\r\n \"resultInfo\": \"Latest commit 238138b01f8730a9e0cc29401e7504cff8b317aa was successfully deployed from master. Objects created: 0, updated: 0, deleted: 1. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/614516034634610d2c803721?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjE0NTE2MDM0NjM0NjEwZDJjODAzNzIxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/tenant/configuration/operationResults/624cde7c01234e10f00b7b88?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzYyNGNkZTdjMDEyMzRlMTBmMDBiN2I4OD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08de2e7d-2d35-4be6-a795-600799503663"
+ "4d0b2104-9803-4790-8c19-4cab8b55eb4a"
],
"User-Agent": [
"FxVersion/4.6.30411.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -927,7 +927,7 @@
"nosniff"
],
"x-ms-request-id": [
- "18e6959c-7713-49cf-ab1c-f59dd3bbdba9"
+ "c790c6ba-e30a-4bd4-b20e-123e14a71832"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -936,16 +936,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "56084912-545a-4f3a-bd1f-68d50d6de8b7"
+ "c790c6ba-e30a-4bd4-b20e-123e14a71832"
],
"x-ms-routing-request-id": [
- "WESTUS:20210917T222712Z:56084912-545a-4f3a-bd1f-68d50d6de8b7"
+ "WESTUS:20220406T002841Z:c790c6ba-e30a-4bd4-b20e-123e14a71832"
],
"Date": [
- "Fri, 17 Sep 2021 22:27:12 GMT"
+ "Wed, 06 Apr 2022 00:28:40 GMT"
],
"Content-Length": [
- "559"
+ "698"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -954,12 +954,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"614516034634610d2c803721\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"614516034634610d2c803721\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-09-17T22:26:11.9Z\",\r\n \"updated\": \"2021-09-17T22:26:59.657Z\",\r\n \"resultInfo\": \"Latest commit f30346b6e6e515a9b933b3a9547abde67c2defd6 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"624cde7c01234e10f00b7b88\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"624cde7c01234e10f00b7b88\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2022-04-06T00:27:40.763Z\",\r\n \"updated\": \"2022-04-06T00:28:36.117Z\",\r\n \"resultInfo\": \"Latest commit 238138b01f8730a9e0cc29401e7504cff8b317aa was successfully deployed from master. Objects created: 0, updated: 0, deleted: 1. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json
index c09e4ecd0058..2ffa0002f17a 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d301947-a8a0-40bb-928a-1e5a44a3ebbe"
+ "8825a423-60bd-4075-a315-4fb65c19b44c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -33,7 +33,7 @@
"nosniff"
],
"x-ms-request-id": [
- "1f4e54ae-b53e-4542-8d6f-a707b4575647"
+ "79a376e3-c5e1-45c8-ab1b-cb7bfde61efe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,16 +42,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "7e9019f3-7cbb-418f-aa61-1eb53f54f379"
+ "79a376e3-c5e1-45c8-ab1b-cb7bfde61efe"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001303Z:7e9019f3-7cbb-418f-aa61-1eb53f54f379"
+ "WESTUS:20220401T185941Z:79a376e3-c5e1-45c8-ab1b-cb7bfde61efe"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:02 GMT"
+ "Fri, 01 Apr 2022 18:59:40 GMT"
],
"Content-Length": [
- "664"
+ "674"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +60,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzE/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy8xP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a03b655d-be53-4386-9a8c-c00108fd3bc2"
+ "d24d65ac-ef9e-4c03-ae63-94cc0ba564b2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,7 +90,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAA//8AAAAAAAAIdA==\""
+ "\"AAAAAAAAC8EAAAAAAAAIdw==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -99,7 +99,7 @@
"nosniff"
],
"x-ms-request-id": [
- "9745b657-723a-49a8-be13-f5cd06f5eb3b"
+ "a776828f-7be9-490f-b1ce-be97e277c640"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,16 +108,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "a2b17ebb-6619-4f73-8bd1-d9719d23f69e"
+ "a776828f-7be9-490f-b1ce-be97e277c640"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001303Z:a2b17ebb-6619-4f73-8bd1-d9719d23f69e"
+ "WESTUS:20220401T185941Z:a776828f-7be9-490f-b1ce-be97e277c640"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:03 GMT"
+ "Fri, 01 Apr 2022 18:59:40 GMT"
],
"Content-Length": [
- "548"
+ "558"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,32 +126,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-03-31T22:38:59.98Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"foo@live.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps1314\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps1767\",\r\n \"lastName\": \"ps9322\",\r\n \"password\": \"ps3004\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps1095\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps4834\",\r\n \"lastName\": \"ps306\",\r\n \"password\": \"ps5184\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b81693e-d462-4aae-a62e-f7d873789b9c"
+ "3738b4ab-0f68-4219-a464-b2f90a1a2f46"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "195"
+ "194"
]
},
"ResponseHeaders": {
@@ -162,7 +162,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABADAAAAAAAAEAMg==\""
+ "\"AAAAAAAAC/AAAAAAAAAL8g==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -171,7 +171,7 @@
"nosniff"
],
"x-ms-request-id": [
- "d45b2458-8f1f-49a3-a954-ad2eadbbddb7"
+ "c94b7c8d-72fc-424e-a8a7-7d5d2f66233e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -180,16 +180,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "4f0dad0e-2af7-4b82-a27d-73d092255227"
+ "c94b7c8d-72fc-424e-a8a7-7d5d2f66233e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001305Z:4f0dad0e-2af7-4b82-a27d-73d092255227"
+ "WESTUS:20220401T185944Z:c94b7c8d-72fc-424e-a8a7-7d5d2f66233e"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:04 GMT"
+ "Fri, 01 Apr 2022 18:59:44 GMT"
],
"Content-Length": [
- "1054"
+ "1073"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,26 +198,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps1767\",\r\n \"lastName\": \"ps9322\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps1314\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps4834\",\r\n \"lastName\": \"ps306\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps1095\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b81693e-d462-4aae-a62e-f7d873789b9c"
+ "3738b4ab-0f68-4219-a464-b2f90a1a2f46"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,7 +228,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABADAAAAAAAAEAMg==\""
+ "\"AAAAAAAAC/AAAAAAAAAL8g==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -237,7 +237,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c23ca108-8e32-4161-9376-8c93d1231f0d"
+ "59bf3992-c2a8-4e2c-b783-e7f103a33fe2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,16 +246,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "acbfaf29-0b42-49c8-8f5e-1ee0a2cd55f7"
+ "59bf3992-c2a8-4e2c-b783-e7f103a33fe2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001305Z:acbfaf29-0b42-49c8-8f5e-1ee0a2cd55f7"
+ "WESTUS:20220401T185944Z:59bf3992-c2a8-4e2c-b783-e7f103a33fe2"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:04 GMT"
+ "Fri, 01 Apr 2022 18:59:44 GMT"
],
"Content-Length": [
- "580"
+ "589"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,26 +264,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps1767\",\r\n \"lastName\": \"ps9322\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps1314\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps4834\",\r\n \"lastName\": \"ps306\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps1095\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ad5fc32-f89c-4936-98b6-e9434cf05654"
+ "079ab263-1f23-4160-878e-f671345c2bd3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,7 +294,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABADkAAAAAAAEAOg==\""
+ "\"AAAAAAAAC/kAAAAAAAAL+g==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -303,7 +303,7 @@
"nosniff"
],
"x-ms-request-id": [
- "85111135-3d01-4ae7-90c1-a2a45bda9272"
+ "3d741967-6a2e-4326-bd5b-40ff4a16204c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,16 +312,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "044ad5ae-c23a-4e3d-afd5-88d4355fa697"
+ "3d741967-6a2e-4326-bd5b-40ff4a16204c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001307Z:044ad5ae-c23a-4e3d-afd5-88d4355fa697"
+ "WESTUS:20220401T185947Z:3d741967-6a2e-4326-bd5b-40ff4a16204c"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:06 GMT"
+ "Fri, 01 Apr 2022 18:59:46 GMT"
],
"Content-Length": [
- "588"
+ "598"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,26 +330,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4212090e-1c7a-4973-8c78-e9aff77bcc48"
+ "1c8e39dc-4f66-4c22-9450-14cbbf512cac"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,7 +360,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAD4AAAAAAAEAPw==\""
+ "\"AAAAAAAAC/4AAAAAAAAL/w==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -369,7 +369,7 @@
"nosniff"
],
"x-ms-request-id": [
- "91abb12e-f6b5-4590-b445-4a35e7c63a32"
+ "37576b0e-4bae-4b91-9f7d-e67071827782"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -378,16 +378,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "73c44c2f-1ad5-4c62-b545-ce1a193039b6"
+ "37576b0e-4bae-4b91-9f7d-e67071827782"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001308Z:73c44c2f-1ad5-4c62-b545-ce1a193039b6"
+ "WESTUS:20220401T185948Z:37576b0e-4bae-4b91-9f7d-e67071827782"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:07 GMT"
+ "Fri, 01 Apr 2022 18:59:47 GMT"
],
"Content-Length": [
- "589"
+ "599"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,26 +396,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a727d44-9ce9-4668-b561-7593ce56305f"
+ "39f428da-cb7c-4143-b485-e67ca275b041"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,7 +426,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAEMAAAAAAAEARA==\""
+ "\"AAAAAAAADAQAAAAAAAAMBQ==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -435,7 +435,7 @@
"nosniff"
],
"x-ms-request-id": [
- "10df76ce-8600-419c-be02-b55f928acbca"
+ "a70e86cc-a8be-4703-a51c-69b1e8ffbd3a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -444,16 +444,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "936f1e7a-d18f-4ca2-b894-db9f6dad15ec"
+ "a70e86cc-a8be-4703-a51c-69b1e8ffbd3a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001309Z:936f1e7a-d18f-4ca2-b894-db9f6dad15ec"
+ "WESTUS:20220401T185948Z:a70e86cc-a8be-4703-a51c-69b1e8ffbd3a"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:08 GMT"
+ "Fri, 01 Apr 2022 18:59:48 GMT"
],
"Content-Length": [
- "588"
+ "598"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,26 +462,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2f5ad92-0d86-48d7-b268-64fded65915d"
+ "d6c4e13c-f6b1-491e-b281-23c45b37f799"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,7 +498,7 @@
"nosniff"
],
"x-ms-request-id": [
- "735c4d06-5388-4a2c-9db7-3e057bfe2fe8"
+ "5176e302-cdf6-4568-870a-7260c347d4dc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,13 +507,13 @@
"11988"
],
"x-ms-correlation-request-id": [
- "e0a40e3f-c96c-4c72-83ba-f342f3ecf7cf"
+ "5176e302-cdf6-4568-870a-7260c347d4dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001310Z:e0a40e3f-c96c-4c72-83ba-f342f3ecf7cf"
+ "WESTUS:20220401T185950Z:5176e302-cdf6-4568-870a-7260c347d4dc"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:10 GMT"
+ "Fri, 01 Apr 2022 18:59:50 GMT"
],
"Content-Length": [
"80"
@@ -529,13 +529,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps5771\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps3863\",\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps3765\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps1967\",\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ad5fc32-f89c-4936-98b6-e9434cf05654"
+ "079ab263-1f23-4160-878e-f671345c2bd3"
],
"If-Match": [
"*"
@@ -544,10 +544,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -564,7 +564,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABADk=\""
+ "\"AAAAAAAAC/k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -573,7 +573,7 @@
"nosniff"
],
"x-ms-request-id": [
- "3a344b31-2e2e-4921-84b5-72664d92bc36"
+ "80a56a97-5772-4f51-89e9-6ac96295d81e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -582,16 +582,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "86fd3d1f-a93b-49f3-8345-00eebef86b1f"
+ "80a56a97-5772-4f51-89e9-6ac96295d81e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001307Z:86fd3d1f-a93b-49f3-8345-00eebef86b1f"
+ "WESTUS:20220401T185946Z:80a56a97-5772-4f51-89e9-6ac96295d81e"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:06 GMT"
+ "Fri, 01 Apr 2022 18:59:46 GMT"
],
"Content-Length": [
- "607"
+ "617"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -600,17 +600,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"groups\": [],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"groups\": [],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Blocked\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4212090e-1c7a-4973-8c78-e9aff77bcc48"
+ "1c8e39dc-4f66-4c22-9450-14cbbf512cac"
],
"If-Match": [
"*"
@@ -619,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -639,7 +639,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAD4=\""
+ "\"AAAAAAAAC/4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -648,7 +648,7 @@
"nosniff"
],
"x-ms-request-id": [
- "bbf094d3-7d0c-4850-b133-3a06caf1308c"
+ "ef82cbc4-6087-4552-b148-4edbefbdf967"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -657,16 +657,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "bfeaf44f-1e1f-4ebb-ae1a-961438626e95"
+ "ef82cbc4-6087-4552-b148-4edbefbdf967"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001308Z:bfeaf44f-1e1f-4ebb-ae1a-961438626e95"
+ "WESTUS:20220401T185947Z:ef82cbc4-6087-4552-b148-4edbefbdf967"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:07 GMT"
+ "Fri, 01 Apr 2022 18:59:47 GMT"
],
"Content-Length": [
- "608"
+ "618"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -675,17 +675,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"groups\": [],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"groups\": [],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a727d44-9ce9-4668-b561-7593ce56305f"
+ "39f428da-cb7c-4143-b485-e67ca275b041"
],
"If-Match": [
"*"
@@ -694,10 +694,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -714,7 +714,7 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAABAEM=\""
+ "\"AAAAAAAADAQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -723,7 +723,7 @@
"nosniff"
],
"x-ms-request-id": [
- "3dac3e77-c73a-4e31-932f-6587dcb69c83"
+ "7980745f-48d1-4c7e-9ac3-caea642c7e76"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -732,16 +732,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "9d2fd1c8-6035-4d14-a4a9-fe7417b010b2"
+ "7980745f-48d1-4c7e-9ac3-caea642c7e76"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001308Z:9d2fd1c8-6035-4d14-a4a9-fe7417b010b2"
+ "WESTUS:20220401T185948Z:7980745f-48d1-4c7e-9ac3-caea642c7e76"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:08 GMT"
+ "Fri, 01 Apr 2022 18:59:48 GMT"
],
"Content-Length": [
- "607"
+ "617"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -750,26 +750,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"groups\": [],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"groups\": [],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=email%20eq%20'changed.contoso@microsoft.com'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9ZW1haWwlMjBlcSUyMCdjaGFuZ2VkLmNvbnRvc29AbWljcm9zb2Z0LmNvbScmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=email%20eq%20'changed.contoso@microsoft.com'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWVtYWlsJTIwZXElMjAnY2hhbmdlZC5jb250b3NvQG1pY3Jvc29mdC5jb20nJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4d9e91f-a492-4fa5-a90c-32fcf29da7ac"
+ "9e25bc73-e70f-4ae5-831e-5a4505ee2ff3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -786,7 +786,7 @@
"nosniff"
],
"x-ms-request-id": [
- "260ba041-200d-414a-8201-6a02cdb195ec"
+ "1696b317-4067-4bbc-a90e-222b683e1244"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -795,16 +795,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "95df991f-0a2d-4f2c-a9db-f18d89cbce01"
+ "1696b317-4067-4bbc-a90e-222b683e1244"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001307Z:95df991f-0a2d-4f2c-a9db-f18d89cbce01"
+ "WESTUS:20220401T185947Z:1696b317-4067-4bbc-a90e-222b683e1244"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:06 GMT"
+ "Fri, 01 Apr 2022 18:59:47 GMT"
],
"Content-Length": [
- "704"
+ "714"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -813,26 +813,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=firstName%20eq%20'ps2011'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHMyMDExJyZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=firstName%20eq%20'ps3247'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWZpcnN0TmFtZSUyMGVxJTIwJ3BzMzI0NycmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a41964c2-9a18-41eb-8483-c50d922b9460"
+ "6b0353d7-ff33-44ea-b28f-174203bbb59a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -849,7 +849,7 @@
"nosniff"
],
"x-ms-request-id": [
- "5d399993-7391-4445-b102-d761a45223cc"
+ "dd8dad29-50e7-4c18-a017-551ddce5a29d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -858,16 +858,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "6ed1654b-6e9a-4608-919c-c61439cda629"
+ "dd8dad29-50e7-4c18-a017-551ddce5a29d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001307Z:6ed1654b-6e9a-4608-919c-c61439cda629"
+ "WESTUS:20220401T185947Z:dd8dad29-50e7-4c18-a017-551ddce5a29d"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:07 GMT"
+ "Fri, 01 Apr 2022 18:59:47 GMT"
],
"Content-Length": [
- "704"
+ "714"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -876,26 +876,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps3881'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczM4ODEnJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=lastName%20eq%20'ps8364'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWxhc3ROYW1lJTIwZXElMjAncHM4MzY0JyZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65f095c6-663e-453c-b642-01d89a597587"
+ "ab6036c7-7671-4e5b-bc73-4a6457b829a4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -912,7 +912,7 @@
"nosniff"
],
"x-ms-request-id": [
- "e1c25300-8d4e-4320-911f-6c2a21ad9784"
+ "c40c9152-c697-4d27-bff1-a05eabbc4fde"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -921,16 +921,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "9f98632f-232b-4dfe-9c47-f8c39a8889ae"
+ "c40c9152-c697-4d27-bff1-a05eabbc4fde"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001307Z:9f98632f-232b-4dfe-9c47-f8c39a8889ae"
+ "WESTUS:20220401T185947Z:c40c9152-c697-4d27-bff1-a05eabbc4fde"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:07 GMT"
+ "Fri, 01 Apr 2022 18:59:47 GMT"
],
"Content-Length": [
- "704"
+ "714"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -939,26 +939,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps3881'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczM4ODEnJmFwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=lastName%20eq%20'ps8364'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPWxhc3ROYW1lJTIwZXElMjAncHM4MzY0JyZhcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecd128d6-f057-4185-8853-518f434a6497"
+ "281a5346-069b-4a8d-9a99-250161358704"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -975,7 +975,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c284cc0c-cb38-4fbb-87a1-89191c7e0dab"
+ "9d3f534f-116c-4c78-8e3d-122074d3d8ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -984,16 +984,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "ca9f74d3-c656-4d5e-b90e-3d1fbebc240b"
+ "9d3f534f-116c-4c78-8e3d-122074d3d8ee"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001307Z:ca9f74d3-c656-4d5e-b90e-3d1fbebc240b"
+ "WESTUS:20220401T185947Z:9d3f534f-116c-4c78-8e3d-122074d3d8ee"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:07 GMT"
+ "Fri, 01 Apr 2022 18:59:47 GMT"
],
"Content-Length": [
- "704"
+ "714"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1002,26 +1002,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=state%20eq%20'blocked'&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9c3RhdGUlMjBlcSUyMCdibG9ja2VkJyZhcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users?$filter=state%20eq%20'blocked'&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycz8kZmlsdGVyPXN0YXRlJTIwZXElMjAnYmxvY2tlZCcmYXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6052e95a-2d9b-4505-95c9-44aa0ad51a46"
+ "28a260a3-9f09-40f1-b693-a42727dff14d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1038,7 +1038,7 @@
"nosniff"
],
"x-ms-request-id": [
- "4fc030be-3670-4aaa-ae77-c65c4fca372d"
+ "42138ba6-3adc-4490-8446-e4ae7b2acd90"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1047,16 +1047,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "e799e5f9-2b3b-4138-862b-4e41a430797b"
+ "42138ba6-3adc-4490-8446-e4ae7b2acd90"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001308Z:e799e5f9-2b3b-4138-862b-4e41a430797b"
+ "WESTUS:20220401T185948Z:42138ba6-3adc-4490-8446-e4ae7b2acd90"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:08 GMT"
+ "Fri, 01 Apr 2022 18:59:48 GMT"
],
"Content-Length": [
- "705"
+ "715"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1065,26 +1065,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3935\",\r\n \"properties\": {\r\n \"firstName\": \"ps2011\",\r\n \"lastName\": \"ps3881\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2021-07-13T00:13:04.473Z\",\r\n \"note\": \"ps5771\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps8695\",\r\n \"properties\": {\r\n \"firstName\": \"ps3247\",\r\n \"lastName\": \"ps8364\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2022-04-01T18:59:43.517Z\",\r\n \"note\": \"ps3765\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935/generateSsoUrl?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695/generateSsoUrl?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTUvZ2VuZXJhdGVTc29Vcmw/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25161051-dbc9-4d19-ade1-88e7979a4dbf"
+ "8b09267f-1407-459e-8efd-759cd845a1dd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1101,7 +1101,7 @@
"nosniff"
],
"x-ms-request-id": [
- "c4bf6654-19f5-449d-9702-c534fe1f4307"
+ "22bdd7ad-a4b1-4e88-bd4e-e04ce8471a37"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1110,13 +1110,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "6c8a2911-0846-46bc-9a59-e41247c72a31"
+ "22bdd7ad-a4b1-4e88-bd4e-e04ce8471a37"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001309Z:6c8a2911-0846-46bc-9a59-e41247c72a31"
+ "WESTUS:20220401T185948Z:22bdd7ad-a4b1-4e88-bd4e-e04ce8471a37"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:08 GMT"
+ "Fri, 01 Apr 2022 18:59:48 GMT"
],
"Content-Length": [
"201"
@@ -1128,26 +1128,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps3935%26202107130018%26zcSUv97b%2bcevQDWDNgS8Q3KrugjcpYEX5m2WraVnpWsFAWchWLjSb%2bIqEuZ2ef9YbZqth1R%2baFInFeAZYrsEWg%3d%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservicetest.portal.azure-api.net/signin-sso?token=ps8695%26202204011904%26CRBCtgtuP43IzdhLPpuLO98K%2bCNxAAawvKa3yRNFwW9YOYr0pNwN1xzwZMfp70XD3PAPop5KlgPzm1bsJgbPMg%3d%3d\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935/token?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNS90b2tlbj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695/token?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTUvdG9rZW4/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2021-07-13T08:13:09.5127289Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2022-04-02T02:59:49.2215643Z\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "515492dd-cfae-40dc-b8e8-47b6ffd2a904"
+ "87abdb0d-5bb6-4bb7-9c38-d0b3aff76853"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1170,7 +1170,7 @@
"nosniff"
],
"x-ms-request-id": [
- "a7395d12-2c61-404c-bce4-e1f898caba05"
+ "82de67f1-e02d-4d44-ba3a-c1a0a2aa4e10"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1179,13 +1179,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "cbbc9da8-9a98-43cf-8fa8-ac874bbb001f"
+ "82de67f1-e02d-4d44-ba3a-c1a0a2aa4e10"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001309Z:cbbc9da8-9a98-43cf-8fa8-ac874bbb001f"
+ "WESTUS:20220401T185949Z:82de67f1-e02d-4d44-ba3a-c1a0a2aa4e10"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:08 GMT"
+ "Fri, 01 Apr 2022 18:59:49 GMT"
],
"Content-Length": [
"120"
@@ -1197,17 +1197,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps3935&202107130813&jiix0a8o76n/DoFYjOrWnmw7w/31TVmEQjFidVErgTZ2Z0zgxtxhpi/QxT1+DTDPo9SbbZzNiQy46SDsGxPzmQ==\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps8695&202204020259&RYtTI9IANZzcH66rKEgG4Hii1/KZmMoIUw3EbVEfuHdG1r+X3ssdW2Twvz/io6Pf1ksl/gLkQYCjW+qrcHMTrg==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?deleteSubscriptions=true&api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20210801/providers/Microsoft.ApiManagement/service/powershellsdkservicetest/users/ps8695?deleteSubscriptions=true&api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjEwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNldGVzdC91c2Vycy9wczg2OTU/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cff32cc0-796d-42ab-9c07-a7a11e769552"
+ "ec1c65a8-2c17-454d-8ba0-c66be835d421"
],
"If-Match": [
"*"
@@ -1216,10 +1216,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1236,7 +1236,7 @@
"nosniff"
],
"x-ms-request-id": [
- "57feac0c-243b-4fbd-83e6-1a4336daf8b4"
+ "a1300c26-4b97-41fd-8299-11defdd94cba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1245,13 +1245,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "7f9a1961-83f0-4370-bb0c-0913eb6147e4"
+ "a1300c26-4b97-41fd-8299-11defdd94cba"
],
"x-ms-routing-request-id": [
- "WESTUS:20210713T001310Z:7f9a1961-83f0-4370-bb0c-0913eb6147e4"
+ "WESTUS:20220401T185950Z:a1300c26-4b97-41fd-8299-11defdd94cba"
],
"Date": [
- "Tue, 13 Jul 2021 00:13:10 GMT"
+ "Fri, 01 Apr 2022 18:59:50 GMT"
],
"Expires": [
"-1"
@@ -1266,18 +1266,18 @@
],
"Names": {
"": [
- "ps3935",
- "ps1767",
- "ps9322",
- "ps3004",
- "ps1314",
- "ps2011",
- "ps3881",
- "ps3863",
- "ps5771"
+ "ps8695",
+ "ps4834",
+ "ps306",
+ "ps5184",
+ "ps1095",
+ "ps3247",
+ "ps8364",
+ "ps1967",
+ "ps3765"
]
},
"Variables": {
- "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ "SubscriptionId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15"
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
index 3d6a29545e14..5848f450c5e2 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
@@ -1,4 +1,4 @@
-
+
ApiManagement
@@ -13,7 +13,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
index eca81c9ef5a7..160039cc1361 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
@@ -100,14 +100,18 @@ private static void ConfigureMappings()
cfg
.CreateMap()
.ForMember(dest => dest.ContentType, opt => opt.MapFrom(src => src.ContentType))
- .ForMember(dest => dest.Sample, opt => opt.MapFrom(src => src.Sample))
+ .ForMember(dest => dest.Examples, opt => opt.Ignore())
.ForMember(dest => dest.FormParameters, opt => opt.Ignore())
.ForMember(dest => dest.SchemaId, opt => opt.MapFrom(src => src.SchemaId))
.ForMember(dest => dest.TypeName, opt => opt.MapFrom(src => src.TypeName))
.AfterMap((src, dest) =>
dest.FormParameters = src.FormParameters == null || !src.FormParameters.Any()
? null
- : ToParameterContract(src.FormParameters));
+ : ToParameterContract(src.FormParameters))
+ .AfterMap((src, dest) =>
+ dest.Examples = src.Examples == null || !src.Examples.Any()
+ ? null
+ : ToExampleContract(src.Examples));
cfg
.CreateMap()
@@ -124,6 +128,7 @@ private static void ConfigureMappings()
.ForMember(dest => dest.IsOnline, opt => opt.MapFrom(src => src.IsOnline ?? false))
.ForMember(dest => dest.ApiVersionSetDescription, opt => opt.MapFrom(src => src.ApiVersionDescription))
.ForMember(dest => dest.Protocols, opt => opt.MapFrom(src => src.Protocols.ToArray()))
+ .ForMember(dest => dest.TermsOfServiceUrl, opt => opt.MapFrom(src => src.TermsOfServiceUrl))
.ForMember(
dest => dest.AuthorizationServerId,
opt => opt.MapFrom(
@@ -160,6 +165,36 @@ private static void ConfigureMappings()
src => src.AuthenticationSettings != null && src.AuthenticationSettings.Openid != null && src.AuthenticationSettings.Openid.BearerTokenSendingMethods != null &&
src.AuthenticationSettings.Openid.BearerTokenSendingMethods.Any()
? src.AuthenticationSettings.Openid.BearerTokenSendingMethods.ToArray()
+ : null))
+ .ForMember(
+ dest => dest.ContactEmail,
+ opt => opt.MapFrom(
+ src => src.Contact != null
+ ? src.Contact.Email
+ : null))
+ .ForMember(
+ dest => dest.ContactName,
+ opt => opt.MapFrom(
+ src => src.Contact != null
+ ? src.Contact.Name
+ : null))
+ .ForMember(
+ dest => dest.ContactUrl,
+ opt => opt.MapFrom(
+ src => src.Contact != null
+ ? src.Contact.Url
+ : null))
+ .ForMember(
+ dest => dest.LicenseName,
+ opt => opt.MapFrom(
+ src => src.License != null
+ ? src.License.Name
+ : null))
+ .ForMember(
+ dest => dest.LicenseUrl,
+ opt => opt.MapFrom(
+ src => src.License != null
+ ? src.License.Url
: null));
cfg
@@ -177,10 +212,15 @@ private static void ConfigureMappings()
.ForMember(dest => dest.IsOnline, opt => opt.MapFrom(src => src.IsOnline))
.ForMember(dest => dest.ApiVersionDescription, opt => opt.MapFrom(src => src.ApiVersionSetDescription))
.ForMember(dest => dest.Protocols, opt => opt.MapFrom(src => src.Protocols.ToArray()))
+ .ForMember(dest => dest.TermsOfServiceUrl, opt => opt.MapFrom(src => src.TermsOfServiceUrl))
.AfterMap((src, dest) =>
dest.AuthenticationSettings = Utils.ToAuthenticationSettings(src))
.AfterMap((src, dest) =>
- dest.SubscriptionKeyParameterNames = Utils.ToSubscriptionKeyParameterNamesContract(src));
+ dest.SubscriptionKeyParameterNames = Utils.ToSubscriptionKeyParameterNamesContract(src))
+ .AfterMap((src, dest) =>
+ dest.Contact = Utils.ToContactInformation(src))
+ .AfterMap((src, dest) =>
+ dest.License = Utils.ToLicenseInformation(src));
cfg
.CreateMap()
@@ -195,24 +235,33 @@ private static void ConfigureMappings()
.ForMember(dest => dest.IsOnline, opt => opt.MapFrom(src => src.IsOnline))
.ForMember(dest => dest.ApiVersionDescription, opt => opt.MapFrom(src => src.ApiVersionSetDescription))
.ForMember(dest => dest.Protocols, opt => opt.MapFrom(src => src.Protocols.ToArray()))
+ .ForMember(dest => dest.TermsOfServiceUrl, opt => opt.MapFrom(src => src.TermsOfServiceUrl))
.AfterMap((src, dest) =>
dest.AuthenticationSettings = Utils.ToAuthenticationSettings(src))
.AfterMap((src, dest) =>
- dest.SubscriptionKeyParameterNames = Utils.ToSubscriptionKeyParameterNamesContract(src));
+ dest.SubscriptionKeyParameterNames = Utils.ToSubscriptionKeyParameterNamesContract(src))
+ .AfterMap((src, dest) =>
+ dest.Contact = Utils.ToContactInformation(src))
+ .AfterMap((src, dest) =>
+ dest.License = Utils.ToLicenseInformation(src));
cfg.CreateMap();
cfg
.CreateMap()
.ForMember(dest => dest.ContentType, opt => opt.MapFrom(src => src.ContentType))
- .ForMember(dest => dest.Sample, opt => opt.MapFrom(src => src.Sample))
+ .ForMember(dest => dest.Examples, opt => opt.Ignore())
.ForMember(dest => dest.FormParameters, opt => opt.Ignore())
.ForMember(dest => dest.SchemaId, opt => opt.MapFrom(src => src.SchemaId))
.ForMember(dest => dest.TypeName, opt => opt.MapFrom(src => src.TypeName))
.AfterMap((src, dest) =>
dest.FormParameters = src.FormParameters == null || !src.FormParameters.Any()
? null
- : ToParameterContract(src.FormParameters));
+ : ToParameterContract(src.FormParameters))
+ .AfterMap((src, dest) =>
+ dest.Examples = src.Examples == null || !src.Examples.Any()
+ ? null
+ : ToExampleContract(src.Examples));
cfg
.CreateMap()
@@ -426,7 +475,7 @@ private static void ConfigureMappings()
cfg
.CreateMap()
.ForMember(dest => dest.Enabled, opt => opt.MapFrom(src => src.Enabled))
- .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.PrincipalId))
+ .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
.ForMember(dest => dest.PrimaryKey, opt => opt.MapFrom(src => src.PrimaryKey))
.ForMember(dest => dest.SecondaryKey, opt => opt.MapFrom(src => src.SecondaryKey));
@@ -647,6 +696,20 @@ private static void ConfigureMappings()
cfg
.CreateMap()
.ForMember(dest => dest.ClientSecret, opt => opt.MapFrom(src => src.ClientSecret));
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.Value , opt => opt.MapFrom(src => src.Value))
+ .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description))
+ .ForMember(dest => dest.ExternalValue, opt => opt.MapFrom(src => src.ExternalValue))
+ .ForMember(dest => dest.Summary, opt => opt.MapFrom(src => src.Summary));
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.Value, opt => opt.MapFrom(src => src.Value))
+ .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description))
+ .ForMember(dest => dest.ExternalValue, opt => opt.MapFrom(src => src.ExternalValue))
+ .ForMember(dest => dest.Summary, opt => opt.MapFrom(src => src.Summary));
});
_mapper = config.CreateMapper();
@@ -769,13 +832,20 @@ public PsApiManagementApi ApiCreate(
string apiVersionDescription,
string apiVersionSetId,
string apiVersion,
+ string apiType,
PsApiManagementSchema[] urlSchema,
string authorizationServerId,
string authorizationScope,
string subscriptionKeyHeaderName,
string subscriptionKeyQueryParamName,
string openIdProviderId,
- string[] bearerTokenSendingMethods)
+ string[] bearerTokenSendingMethods,
+ string termsOfServiceUrl,
+ string contactName,
+ string contactUrl,
+ string contactEmail,
+ string licenseName,
+ string licenseUrl)
{
var api = new ApiCreateOrUpdateParameter
{
@@ -783,9 +853,12 @@ public PsApiManagementApi ApiCreate(
Description = description,
ServiceUrl = serviceUrl,
Path = urlSuffix,
- Protocols = Mapper.Map>(urlSchema),
+ Protocols = Mapper.Map>(urlSchema)
};
-
+ if (!string.IsNullOrWhiteSpace(apiType))
+ {
+ api.ApiType = apiType;
+ }
if (!string.IsNullOrWhiteSpace(authorizationServerId))
{
api.AuthenticationSettings = new AuthenticationSettingsContract
@@ -846,6 +919,36 @@ public PsApiManagementApi ApiCreate(
api.ApiVersion = apiVersion;
}
+ if (!string.IsNullOrWhiteSpace(apiType))
+ {
+ api.ApiType = apiType;
+ }
+
+ if (!string.IsNullOrWhiteSpace(termsOfServiceUrl))
+ {
+ api.TermsOfServiceUrl = termsOfServiceUrl;
+ }
+
+ if (!string.IsNullOrWhiteSpace(contactEmail) || !string.IsNullOrWhiteSpace(contactName) || !string.IsNullOrWhiteSpace(contactUrl))
+ {
+ api.Contact = new ApiContactInformation
+ {
+ Email = contactEmail,
+ Name = contactName,
+ Url = contactUrl
+ };
+ }
+
+ if (!string.IsNullOrWhiteSpace(licenseName) || !string.IsNullOrWhiteSpace(licenseUrl))
+ {
+ api.License = new ApiLicenseInformation
+ {
+ Name = licenseName,
+ Url = licenseUrl
+ };
+ }
+
+
var getResponse = Client.Api.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, id, api, null);
return Mapper.Map(getResponse);
@@ -878,7 +981,14 @@ public PsApiManagementApi ApiSet(
string subscriptionKeyQueryParamName,
string openIdProviderId,
string[] bearerTokenSendingMethods,
- PsApiManagementApi apiObject)
+ PsApiManagementApi apiObject,
+ string apiType,
+ string termsOfServiceUrl,
+ string contactName,
+ string contactUrl,
+ string contactEmail,
+ string licenseName,
+ string licenseUrl)
{
ApiCreateOrUpdateParameter api;
if (apiObject == null)
@@ -922,7 +1032,7 @@ public PsApiManagementApi ApiSet(
if (urlSchema != null)
{
urlSchema = urlSchema.Distinct().ToArray();
- api.Protocols = Mapper.Map>(urlSchema);
+ api.Protocols = Mapper.Map>(urlSchema);
}
if (subscriptionRequired)
@@ -963,6 +1073,35 @@ public PsApiManagementApi ApiSet(
};
}
+ if (apiType != null)
+ {
+ api.ApiType = apiType;
+ }
+
+ if (!string.IsNullOrWhiteSpace(termsOfServiceUrl))
+ {
+ api.TermsOfServiceUrl = termsOfServiceUrl;
+ }
+
+ if (!string.IsNullOrWhiteSpace(contactEmail) || !string.IsNullOrWhiteSpace(contactName) || !string.IsNullOrWhiteSpace(contactUrl))
+ {
+ api.Contact = new ApiContactInformation
+ {
+ Email = contactEmail,
+ Name = contactName,
+ Url = contactUrl
+ };
+ }
+
+ if (!string.IsNullOrWhiteSpace(licenseName) || !string.IsNullOrWhiteSpace(licenseUrl))
+ {
+ api.License = new ApiLicenseInformation
+ {
+ Name = licenseName,
+ Url = licenseUrl
+ };
+ }
+
var updatedApiContract = Client.Api.CreateOrUpdate(
resourceGroupName,
servicename,
@@ -1008,7 +1147,7 @@ public void ApiImportFromFile(
if (protocols != null)
{
- apiCreateOrUpdateParams.Protocols = Mapper.Map>(protocols);
+ apiCreateOrUpdateParams.Protocols = Mapper.Map>(protocols);
}
if (!string.IsNullOrEmpty(serviceUrl))
@@ -1070,7 +1209,7 @@ public void ApiImportFromUrl(
if (protocols != null)
{
- createOrUpdateContract.Protocols = Mapper.Map>(protocols);
+ createOrUpdateContract.Protocols = Mapper.Map>(protocols);
}
if (!string.IsNullOrEmpty(serviceUrl))
@@ -4140,6 +4279,39 @@ static PsApiManagementRepresentation[] ToRepresentationContract(IList ToExampleContract(PsApiManagementParameterExample[] examples)
+ {
+ if (examples == null || !examples.Any())
+ {
+ return null;
+ }
+
+ var examplesList = new Dictionary();
+
+ foreach (var example in examples)
+ {
+ examplesList.Add("default", Mapper.Map(example));
+ }
+
+ return examplesList;
+ }
+
+ static PsApiManagementParameterExample[] ToExampleContract(IDictionary examples)
+ {
+ if (examples == null || !examples.Any())
+ {
+ return null;
+ }
+
+ var examplesList = new List();
+ foreach (var example in examples)
+ {
+ examplesList.Add(Mapper.Map(example.Value));
+ }
+
+ return examplesList.ToArray();
+ }
#endregion
#region Gateways
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs
index f10f258986c0..708a654b5dcb 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs
@@ -69,7 +69,7 @@ public class NewAzureApiManagementApi : AzureApiManagementCmdletBase
[Parameter(
ValueFromPipelineByPropertyName = true,
Mandatory = true,
- HelpMessage = "Web API protocols (http, https). Protocols over which API is made available. " +
+ HelpMessage = "Web API protocols (http, https, ws, wss). Protocols over which API is made available. " +
"This parameter is required. Default value is $null.")]
[ValidateNotNullOrEmpty]
public PsApiManagementSchema[] Protocols { get; set; }
@@ -155,6 +155,48 @@ public class NewAzureApiManagementApi : AzureApiManagementCmdletBase
HelpMessage = "Api Revision of the source API. This parameter is optional.")]
public String SourceApiRevision { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Type of API to create. This parameter is optional.")]
+ public String ApiType { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "A URL to the Terms of Service for the API. This parameter is optional.")]
+ public String TermsOfServiceUrl { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The identifying name of the contact person/organization. This parameter is optional.")]
+ public String ContactName { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The URL pointing to the contact information. MUST be in the format of a URL. This parameter is optional.")]
+ public String ContactUrl { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The email address of the contact person/organization. MUST be in the format of an email address. This parameter is optional.")]
+ public String ContactEmail { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The license name used for the API. This parameter is optional.")]
+ public String LicenseName { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "A URL to the Terms of Service for the API. This parameter is optional.")]
+ public String LicenseUrl { get; set; }
+
public override void ExecuteApiManagementCmdlet()
{
string id = ApiId ?? Guid.NewGuid().ToString("N");
@@ -172,13 +214,21 @@ public override void ExecuteApiManagementCmdlet()
ApiVersionDescription,
ApiVersionSetId,
ApiVersion,
+ ApiType,
Protocols.Distinct().ToArray(),
AuthorizationServerId,
AuthorizationScope,
SubscriptionKeyHeaderName,
SubscriptionKeyQueryParamName,
OpenIdProviderId,
- BearerTokenSendingMethod);
+ BearerTokenSendingMethod,
+ TermsOfServiceUrl,
+ ContactName,
+ ContactUrl,
+ ContactEmail,
+ LicenseName,
+ LicenseUrl
+ );
if (ProductIds != null && ProductIds.Any())
{
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApi.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApi.cs
index 5c9339531fb4..8f5d6c82b281 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApi.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApi.cs
@@ -145,6 +145,48 @@ public class SetAzureApiManagementApi : AzureApiManagementCmdletBase
"representing the set API.")]
public SwitchParameter PassThru { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Type of API to create. This parameter is optional.")]
+ public String ApiType { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "A URL to the Terms of Service for the API. This parameter is optional.")]
+ public String TermsOfServiceUrl { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The identifying name of the contact person/organization. This parameter is optional.")]
+ public String ContactName { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The URL pointing to the contact information. MUST be in the format of a URL. This parameter is optional.")]
+ public String ContactUrl { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The email address of the contact person/organization. MUST be in the format of an email address. This parameter is optional.")]
+ public String ContactEmail { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "The license name used for the API. This parameter is optional.")]
+ public String LicenseName { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "A URL to the Terms of Service for the API. This parameter is optional.")]
+ public String LicenseUrl { get; set; }
+
public override void ExecuteApiManagementCmdlet()
{
string resourcegroupName;
@@ -180,7 +222,14 @@ public override void ExecuteApiManagementCmdlet()
SubscriptionKeyQueryParamName,
OpenIdProviderId,
BearerTokenSendingMethod,
- InputObject);
+ InputObject,
+ ApiType,
+ TermsOfServiceUrl,
+ ContactName,
+ ContactUrl,
+ ContactEmail,
+ LicenseName,
+ LicenseUrl);
if (PassThru.IsPresent)
{
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApiRevision.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApiRevision.cs
index 466d7a880d70..556bedc11120 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApiRevision.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementApiRevision.cs
@@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands
[Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementApiRevision", DefaultParameterSetName = ExpandedParameterSet, SupportsShouldProcess = true)]
[OutputType(typeof(PsApiManagementApi), ParameterSetName = new[] { ExpandedParameterSet, ByInputObjectParameterSet })]
public class SetAzureApiManagementApiRevision : SetAzureApiManagementApi
- {
+ {
[Parameter(
ParameterSetName = ExpandedParameterSet,
ValueFromPipelineByPropertyName = true,
@@ -77,10 +77,17 @@ public override void ExecuteApiManagementCmdlet()
SubscriptionKeyQueryParamName,
OpenIdProviderId,
BearerTokenSendingMethod,
- InputObject);
+ InputObject,
+ ApiType,
+ TermsOfServiceUrl,
+ ContactName,
+ ContactUrl,
+ ContactEmail,
+ LicenseName,
+ LicenseUrl);
if (PassThru.IsPresent)
- {
+ {
WriteObject(updatedApiRevision);
}
}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Helpers/Utils.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Helpers/Utils.cs
index 06d84f7f29fb..63ced9bc6f83 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Helpers/Utils.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Helpers/Utils.cs
@@ -292,6 +292,44 @@ public static SubscriptionKeyParameterNamesContract ToSubscriptionKeyParameterNa
return subscriptionKeyParameters;
}
+ public static ApiLicenseInformation ToLicenseInformation(PsApiManagementApi psApiManagementApi)
+ {
+ if (psApiManagementApi == null ||
+ (string.IsNullOrWhiteSpace(psApiManagementApi.LicenseUrl) &&
+ string.IsNullOrEmpty(psApiManagementApi.LicenseName)))
+ {
+ return null;
+ }
+
+ var licenseParameters = new ApiLicenseInformation()
+ {
+ Name = psApiManagementApi.LicenseName,
+ Url = psApiManagementApi.LicenseUrl
+ };
+
+ return licenseParameters;
+ }
+
+ public static ApiContactInformation ToContactInformation(PsApiManagementApi psApiManagementApi)
+ {
+ if (psApiManagementApi == null ||
+ (string.IsNullOrWhiteSpace(psApiManagementApi.ContactEmail) &&
+ string.IsNullOrWhiteSpace(psApiManagementApi.ContactName) &&
+ string.IsNullOrEmpty(psApiManagementApi.ContactUrl)))
+ {
+ return null;
+ }
+
+ var contactParameters = new ApiContactInformation()
+ {
+ Email = psApiManagementApi.ContactEmail,
+ Name = psApiManagementApi.ContactName,
+ Url = psApiManagementApi.ContactUrl
+ };
+
+ return contactParameters;
+ }
+
public static string TrimApiResourceIdentifier(string armApiId)
{
if (string.IsNullOrEmpty(armApiId))
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApi.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApi.cs
index fcf19e014245..1bce4eed5216 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApi.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApi.cs
@@ -110,5 +110,35 @@ public class PsApiManagementApi : PsApiManagementArmResource
/// Gets or sets a resource identifier for the related ApiVersionSet.
///
public string ApiVersionSetId { get; set; }
+
+ ///
+ /// Gets or sets the email address of the contact person/organization.
+ ///
+ public string ContactEmail { get; set; }
+
+ ///
+ /// Gets or sets the identifying name of the contact person/organization.
+ ///
+ public string ContactName { get; set; }
+
+ ///
+ /// Gets or sets the URL pointing to the contact information.
+ ///
+ public string ContactUrl { get; set; }
+
+ ///
+ /// Gets or sets the license name used for the API.
+ ///
+ public string LicenseName { get; set; }
+
+ ///
+ /// Gets or sets a URL to the License for the API.
+ ///
+ public string LicenseUrl { get; set; }
+
+ ///
+ /// Gets or sets a URL to the Terms of Service for the API.
+ ///
+ public string TermsOfServiceUrl { get; set; }
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiType.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiType.cs
index e34e9d8d5f68..600a88ff2475 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiType.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementApiType.cs
@@ -17,6 +17,8 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models
public enum PsApiManagementApiType
{
Http = 1,
- Soap = 2
+ Soap = 2,
+ WebSocket = 3,
+ GraphQL = 4
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementParameterExample.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementParameterExample.cs
new file mode 100644
index 000000000000..44b5c204ba2a
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementParameterExample.cs
@@ -0,0 +1,27 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models
+{
+ public class PsApiManagementParameterExample
+ {
+ public string Summary { get; set; }
+
+ public object Value { get; set; }
+
+ public string ExternalValue { get; set; }
+
+ public string Description { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs
index 29cdcb596692..5cf338b9d112 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementRepresentation.cs
@@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+using System.Collections.Generic;
using Microsoft.Azure.Management.ApiManagement.Models;
namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models
@@ -20,7 +21,7 @@ public class PsApiManagementRepresentation
{
public string ContentType { get; set; }
- public string Sample { get; set; }
+ public PsApiManagementParameterExample[] Examples { get; set; }
public PsApiManagementParameter[] FormParameters { get; set; }
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementSchema.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementSchema.cs
index c6641b7dc027..899517d5e0cf 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementSchema.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementSchema.cs
@@ -17,6 +17,8 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models
public enum PsApiManagementSchema
{
Http = 1,
- Https = 2
+ Https = 2,
+ Ws = 3,
+ Wss = 4
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
index 73b92a699f9d..aa3e9f9e4ea9 100644
--- a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
+++ b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.cs b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.cs
index c286c771459d..8426ba10dc60 100644
--- a/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.cs
+++ b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.cs
@@ -12,20 +12,20 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-using System;
using Microsoft.Azure.Commands.Common.Authentication;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.IO;
using Microsoft.Azure.Management.Storage.Version2017_10_01;
using Microsoft.Azure.ServiceManagement.Common.Models;
-using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
using Microsoft.Azure.Test.HttpRecorder;
+using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
-using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory;
-using ResourceManagementClient = Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.IO;
using Xunit;
+using ResourceManagementClient = Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient;
+using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory;
using Microsoft.Azure.Commands.TestFx;
using Xunit.Abstractions;
@@ -113,6 +113,18 @@ public void TestBackupRestoreApiManagement()
TestRunner.RunTestScript("Test-BackupRestoreApiManagement");
}
+#if NETSTANDARD
+ [Fact(Skip = "Storage version out-of-date: Awaiting Storage.Management.Common")]
+ [Trait(Category.RunType, Category.DesktopOnly)]
+#else
+ [Fact]
+#endif
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestBackupRestoreApiManagementUsingManagedIdentity()
+ {
+ TestRunner.RunTestScript("Test-BackupRestoreApiManagementUsingManagedIdentity");
+ }
+
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestApiManagementHostnamesCrud()
@@ -127,6 +139,13 @@ public void TestCrudApiManagementWithVirtualNetwork()
TestRunner.RunTestScript("Test-ApiManagementVirtualNetworkCRUD");
}
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestCrudApiManagementVirtualNetworkStv2CRUD()
+ {
+ TestRunner.RunTestScript("Test-ApiManagementVirtualNetworkStv2CRUD");
+ }
+
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestCrudApiManagementWithAdditionalRegions()
diff --git a/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1 b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1
index 8c0b07924c3e..33b1b591161e 100644
--- a/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1
+++ b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1
@@ -616,4 +616,163 @@ function Test-CrudApiManagementWithExternalVpn {
# Cleanup
Clean-ResourceGroup $resourceGroupName
}
+}
+
+<#
+.SYNOPSIS
+Tests ApiManagementVirtualNetworkCRUD
+#>
+function Test-ApiManagementVirtualNetworkStv2CRUD {
+ # Setup
+ $primarylocation = "East US"
+ $secondarylocation = "South Central US"
+ $resourceGroupName = Get-ResourceGroupName
+ $apiManagementName = Get-ApiManagementServiceName
+ $organization = "apimpowershellorg"
+ $adminEmail = "apim@powershell.org"
+ $sku = "Developer"
+ $capacity = 1
+ $primarySubnetResourceId = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet"
+ $primaryPublicIPAddressId = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip";
+ $primaryPublicIPAddressId2 = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip2";
+ $additionalSubnetResourceId = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/stv2subnet"
+ $additionalPublicIPAddressId = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvnetscuip";
+ $vpnType = "External"
+
+ try {
+ # Create Resource Group
+ New-AzResourceGroup -Name $resourceGroupName -Location $primarylocation
+
+ # Create a Virtual Network Object
+ $virtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId $primarySubnetResourceId
+
+ # Create API Management service in External VNET
+ $result = New-AzApiManagement -ResourceGroupName $resourceGroupName -Location $primarylocation -Name $apiManagementName -Organization $organization -AdminEmail $adminEmail -VpnType $vpnType `
+ -VirtualNetwork $virtualNetwork -PublicIpAddressId $primaryPublicIPAddressId -Sku $sku -Capacity $capacity
+
+ Assert-AreEqual $resourceGroupName $result.ResourceGroupName
+ Assert-AreEqual $apiManagementName $result.Name
+ Assert-AreEqual $primarylocation $result.Location
+ Assert-AreEqual $sku $result.Sku
+ Assert-AreEqual 1 $result.Capacity
+ Assert-AreEqual $vpnType $result.VpnType
+ Assert-Null $result.PrivateIPAddresses
+ Assert-NotNull $result.PublicIPAddresses
+ Assert-AreEqual $primarySubnetResourceId $result.VirtualNetwork.SubnetResourceId
+
+
+ $networkStatus = Get-AzApiManagementNetworkStatus -ResourceGroupName $resourceGroupName -Name $apiManagementName
+ Assert-NotNull $networkStatus
+ Assert-NotNull $networkStatus.DnsServers
+ Assert-NotNull $networkStatus.ConnectivityStatus
+
+ # Get the service and switch to internal Virtual Network
+ $service = Get-AzApiManagement -ResourceGroupName $resourceGroupName -Name $apiManagementName
+ $vpnType = "Internal"
+ $service.VirtualNetwork = $virtualNetwork
+ $service.PublicIpAddressId = $primaryPublicIPAddressId2
+ $service.VpnType = $vpnType
+ # update the SKU to Premium SKU
+ $sku = "Premium"
+ $service.Sku = $sku
+
+ # Create Virtual Network Object for Additional region
+ $additionalRegionVirtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId $additionalSubnetResourceId
+
+ $service = Add-AzApiManagementRegion -ApiManagement $service -Location $secondarylocation `
+ -VirtualNetwork $additionalRegionVirtualNetwork -PublicIpAddressId $additionalPublicIPAddressId
+ # Update the Deployment into Internal Virtual Network
+ $service = Set-AzApiManagement -InputObject $service -PassThru
+
+ Assert-AreEqual $resourceGroupName $service.ResourceGroupName
+ Assert-AreEqual $apiManagementName $service.Name
+ Assert-AreEqual $sku $service.Sku
+ Assert-AreEqual $primarylocation $service.Location
+ Assert-AreEqual "Succeeded" $service.ProvisioningState
+ Assert-AreEqual $vpnType $service.VpnType
+ Assert-NotNull $service.VirtualNetwork
+ Assert-NotNull $service.VirtualNetwork.SubnetResourceId
+ Assert-NotNull $service.PrivateIPAddresses
+ Assert-NotNull $service.PublicIPAddresses
+ Assert-AreEqual $primarySubnetResourceId $service.VirtualNetwork.SubnetResourceId
+
+ # Validate the additional region
+ Assert-AreEqual 1 $service.AdditionalRegions.Count
+ $found = 0
+ for ($i = 0; $i -lt $service.AdditionalRegions.Count; $i++) {
+ if ($service.AdditionalRegions[$i].Location -eq $secondarylocation) {
+ $found = $found + 1
+ Assert-AreEqual $sku $service.AdditionalRegions[$i].Sku
+ Assert-AreEqual 1 $service.AdditionalRegions[$i].Capacity
+ Assert-NotNull $service.AdditionalRegions[$i].VirtualNetwork
+ Assert-AreEqual $additionalSubnetResourceId $service.AdditionalRegions[$i].VirtualNetwork.SubnetResourceId
+ Assert-NotNull $service.AdditionalRegions[$i].PrivateIPAddresses
+ Assert-NotNull $service.AdditionalRegions[$i].PublicIPAddresses
+ Assert-NotNull $service.AdditionalRegions[$i].PublicIpAddressId
+ }
+ }
+
+ Assert-True {$found -eq 1} "Api Management regions created earlier is not found."
+
+ # check the network status for the service.
+ $networkStatus = Get-AzApiManagementNetworkStatus -ApiManagementObject $service
+ Assert-NotNull $networkStatus
+ Assert-NotNull $networkStatus.DnsServers
+ Assert-NotNull $networkStatus.ConnectivityStatus
+
+ }
+ finally {
+ # Cleanup
+ Clean-ResourceGroup $resourceGroupName
+ }
+}
+
+<#
+.SYNOPSIS
+Tests API Management Backup/Restore operations.
+#>
+function Test-BackupRestoreApiManagementUsingManagedIdentity {
+ # Setup
+ $location = Get-ProviderLocation "Microsoft.ApiManagement/service"
+ $resourceGroupName = Get-ResourceGroupName
+ $storageLocation = "westus2"
+ $storageAccountName = "apimbackupmsi"
+ $msiClientId = "a6270d0c-7d86-478b-8cbe-dc9047ba54f7"
+ $msiUserAssignedId = "/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/net-sdk-backup-restore/providers/Microsoft.ManagedIdentity/userAssignedIdentities/apim-backup-restore-msi"
+ $apiManagementName = Get-ApiManagementServiceName
+ $organization = "apimpowershellorg"
+ $adminEmail = "apim@powershell.org"
+ $containerName = "backups"
+ $backupName = $apiManagementName + ".apimbackup"
+
+
+ try {
+ New-AzResourceGroup -Name $resourceGroupName -Location $location -Force
+
+ # Create storage account context
+ $storageContext = New-AzStorageContext -StorageAccountName $storageAccountName
+
+ # Create API Management service
+ $apiManagementService = New-AzApiManagement -ResourceGroupName $resourceGroupName -Location $location -Name $apiManagementName `
+ -Organization $organization -AdminEmail $adminEmail -UserAssignedIdentity @($msiUserAssignedId)
+
+ # Backup API Management service
+ Backup-AzApiManagement -ResourceGroupName $resourceGroupName -Name $apiManagementName -StorageContext $storageContext `
+ -TargetContainerName $containerName -TargetBlobName $backupName -AccessType "UserAssignedManagedIdentity" -IdentityClientId $msiClientId
+
+ # Restore API Management service
+ $restoreResult = Restore-AzApiManagement -ResourceGroupName $resourceGroupName -Name $apiManagementName -StorageContext $storageContext `
+ -SourceContainerName $containerName -SourceBlobName $backupName -AccessType "UserAssignedManagedIdentity" -IdentityClientId $msiClientId -PassThru
+
+ Assert-AreEqual $resourceGroupName $restoreResult.ResourceGroupName
+ Assert-AreEqual $apiManagementName $restoreResult.Name
+ Assert-AreEqual $location $restoreResult.Location
+ Assert-AreEqual "Developer" $restoreResult.Sku
+ Assert-AreEqual 1 $restoreResult.Capacity
+ Assert-AreEqual "Succeeded" $restoreResult.ProvisioningState
+ }
+ finally {
+ # Cleanup
+ Clean-ResourceGroup $resourceGroupName
+ }
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json
index 1f7d7d8c3fcc..1112833eb1b5 100644
--- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json
+++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestApiManagementHostnamesCrud.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps38?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8518?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODUxOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f60c1fe-0af4-4430-9339-64476f46e399"
+ "82bc4b1a-79b8-4643-9367-4d4fd52c0e8f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "8872881b-04fb-4ff5-8755-ccebfdeeb430"
+ "ac7c16bb-8e51-445c-a8ec-35271074dae6"
],
"x-ms-correlation-request-id": [
- "8872881b-04fb-4ff5-8755-ccebfdeeb430"
+ "ac7c16bb-8e51-445c-a8ec-35271074dae6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T144531Z:8872881b-04fb-4ff5-8755-ccebfdeeb430"
+ "WESTUS:20220322T064056Z:ac7c16bb-8e51-445c-a8ec-35271074dae6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,10 +51,10 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:45:30 GMT"
+ "Tue, 22 Mar 2022 06:40:56 GMT"
],
"Content-Length": [
- "161"
+ "165"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38\",\r\n \"name\": \"ps38\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518\",\r\n \"name\": \"ps8518\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershelltest.current.int-azure-api.net\",\r\n \"keyVaultId\": \"https://powershell-apim-kv.vault.azure.net/secrets/powershell-current\",\r\n \"identityClientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {}\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,10 +99,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAA5g50=\""
+ "\"AAAAAABWz1I=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -111,8 +111,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a4e59f8a-9d09-4b5e-a2da-fe326ed2c7d8",
- "89f2aef9-7357-4db6-a49c-139b83985d19"
+ "27151dff-3ebd-45d4-ad89-fcc50ad9237d",
+ "27151dff-3ebd-45d4-ad89-fcc50ad9237d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "60c18d02-820a-4465-8d7e-7ea4ddebecb9"
+ "27151dff-3ebd-45d4-ad89-fcc50ad9237d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T144538Z:60c18d02-820a-4465-8d7e-7ea4ddebecb9"
+ "WESTCENTRALUS:20220322T064103Z:27151dff-3ebd-45d4-ad89-fcc50ad9237d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:45:37 GMT"
+ "Tue, 22 Mar 2022 06:41:03 GMT"
],
"Content-Length": [
- "3436"
+ "4165"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,32 +142,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371\",\r\n \"name\": \"ps8371\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5g50=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2021-07-15T14:45:34.4771291Z\",\r\n \"gatewayUrl\": \"https://ps8371.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8371.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershelltest.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://powershell-apim-kv.vault.azure.net/secrets/powershell-current\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-06-22T09:18:52-07:00\",\r\n \"thumbprint\": \"4B50EDDE5E1D93013778CDAE90638DDB283F42FE\",\r\n \"subject\": \"CN=powershelltest.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860\",\r\n \"name\": \"ps6860\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWz1I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2022-03-22T06:40:59.9611019Z\",\r\n \"gatewayUrl\": \"https://ps6860.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6860.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershelltest.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://powershell-apim-kv.vault.azure.net/secrets/powershell-current\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2023-01-21T05:35:19-08:00\",\r\n \"thumbprint\": \"A57EE49AF3CF420AC04F3FACBD6B9A9F2486BCD0\",\r\n \"subject\": \"CN=powershelltest.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\",\r\n \"certificateSource\": \"KeyVault\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T06:40:59.356183Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T06:40:59.356183Z\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjA/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"storeName\": \"CertificateAuthority\"\r\n }\r\n ],\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"certificatePassword\": \"Password\",\r\n \"storeName\": \"CertificateAuthority\"\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "6405"
+ "6474"
]
},
"ResponseHeaders": {
@@ -178,10 +178,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAA5hD8=\""
+ "\"AAAAAABWz50=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -190,8 +190,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "42cd6661-f019-41b7-bc3b-8bec34dd0484",
- "4e9511e9-8f28-4be0-a161-4dd511976646"
+ "195d6877-baf0-4c31-a0f2-73764d100934",
+ "195d6877-baf0-4c31-a0f2-73764d100934"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -200,19 +200,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "21bae22a-8342-4280-8c97-f15895846861"
+ "195d6877-baf0-4c31-a0f2-73764d100934"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151951Z:21bae22a-8342-4280-8c97-f15895846861"
+ "WESTCENTRALUS:20220322T070812Z:195d6877-baf0-4c31-a0f2-73764d100934"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:19:51 GMT"
+ "Tue, 22 Mar 2022 07:08:12 GMT"
],
"Content-Length": [
- "4396"
+ "5117"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -221,23 +221,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371\",\r\n \"name\": \"ps8371\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5hD8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2021-07-15T14:45:34.4771291Z\",\r\n \"gatewayUrl\": \"https://ps8371.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8371-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8371.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8371.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8371.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8371.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8371.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershelltest.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://powershell-apim-kv.vault.azure.net/secrets/powershell-current\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-06-22T09:18:52-07:00\",\r\n \"thumbprint\": \"4B50EDDE5E1D93013778CDAE90638DDB283F42FE\",\r\n \"subject\": \"CN=powershelltest.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.166.223\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860\",\r\n \"name\": \"ps6860\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWz50=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2022-03-22T06:40:59.9611019Z\",\r\n \"gatewayUrl\": \"https://ps6860.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6860-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6860.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6860.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6860.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6860.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6860.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershelltest.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://powershell-apim-kv.vault.azure.net/secrets/powershell-current\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2023-01-21T05:35:19-08:00\",\r\n \"thumbprint\": \"A57EE49AF3CF420AC04F3FACBD6B9A9F2486BCD0\",\r\n \"subject\": \"CN=powershelltest.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\",\r\n \"certificateSource\": \"KeyVault\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.119.121.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T06:40:59.356183Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T06:40:59.356183Z\"\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -248,7 +248,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -257,7 +257,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "957140c1-2b7f-4955-a1e7-5c0d1295b5cc"
+ "f009c392-dd99-4902-943a-bd4573626181"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -266,16 +266,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "fed11895-6293-42b8-aa82-3d94102a3f23"
+ "f009c392-dd99-4902-943a-bd4573626181"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T144638Z:fed11895-6293-42b8-aa82-3d94102a3f23"
+ "WESTCENTRALUS:20220322T064204Z:f009c392-dd99-4902-943a-bd4573626181"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:46:38 GMT"
+ "Tue, 22 Mar 2022 06:42:03 GMT"
],
"Expires": [
"-1"
@@ -288,19 +288,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -311,7 +311,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -320,7 +320,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cca2aced-6877-4d7b-a850-118b872c6576"
+ "d4d5f6fa-f263-494b-a846-4cd64aa3c115"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -329,16 +329,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "bc8b7556-5b88-41a3-bfc0-c0c63f5a25e1"
+ "d4d5f6fa-f263-494b-a846-4cd64aa3c115"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T144738Z:bc8b7556-5b88-41a3-bfc0-c0c63f5a25e1"
+ "WESTCENTRALUS:20220322T064304Z:d4d5f6fa-f263-494b-a846-4cd64aa3c115"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:47:38 GMT"
+ "Tue, 22 Mar 2022 06:43:03 GMT"
],
"Expires": [
"-1"
@@ -351,19 +351,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -374,7 +374,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -383,7 +383,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fd8bc66e-3594-4ac4-b167-f32511bdca51"
+ "988d29bf-7b0a-4de2-9de5-68ff53a3c5aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "ed599aab-0d5a-4eef-8fde-f8c8e947dfeb"
+ "988d29bf-7b0a-4de2-9de5-68ff53a3c5aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T144839Z:ed599aab-0d5a-4eef-8fde-f8c8e947dfeb"
+ "WESTCENTRALUS:20220322T064404Z:988d29bf-7b0a-4de2-9de5-68ff53a3c5aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:48:39 GMT"
+ "Tue, 22 Mar 2022 06:44:04 GMT"
],
"Expires": [
"-1"
@@ -414,19 +414,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -437,7 +437,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -446,7 +446,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1ebc04a7-2272-4d95-bb23-1dde4a59f9a9"
+ "22c40a34-772c-4a70-aa6d-a5367c86d065"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -455,16 +455,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "296d21a6-e32c-4411-84bb-d211d0220131"
+ "22c40a34-772c-4a70-aa6d-a5367c86d065"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T144939Z:296d21a6-e32c-4411-84bb-d211d0220131"
+ "WESTCENTRALUS:20220322T064505Z:22c40a34-772c-4a70-aa6d-a5367c86d065"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:49:38 GMT"
+ "Tue, 22 Mar 2022 06:45:04 GMT"
],
"Expires": [
"-1"
@@ -477,19 +477,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -500,7 +500,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -509,7 +509,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "89ada5b7-b77a-4b86-b2cb-9574edb9385d"
+ "9f9cb947-cdba-4ba5-b5a7-fe460bf030ff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -518,16 +518,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "2d57531b-d5db-4eb5-ae74-b4e06d4ed07e"
+ "9f9cb947-cdba-4ba5-b5a7-fe460bf030ff"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145040Z:2d57531b-d5db-4eb5-ae74-b4e06d4ed07e"
+ "WESTCENTRALUS:20220322T064605Z:9f9cb947-cdba-4ba5-b5a7-fe460bf030ff"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:50:39 GMT"
+ "Tue, 22 Mar 2022 06:46:05 GMT"
],
"Expires": [
"-1"
@@ -540,19 +540,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -563,7 +563,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -572,7 +572,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c59084cb-496e-46fb-9883-b8a87b65481a"
+ "4e378a7a-73e6-44c9-b20b-9da9652c5538"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -581,16 +581,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "38c77ec0-d231-45d7-b652-226ae909b03e"
+ "4e378a7a-73e6-44c9-b20b-9da9652c5538"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145140Z:38c77ec0-d231-45d7-b652-226ae909b03e"
+ "WESTCENTRALUS:20220322T064705Z:4e378a7a-73e6-44c9-b20b-9da9652c5538"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:51:39 GMT"
+ "Tue, 22 Mar 2022 06:47:04 GMT"
],
"Expires": [
"-1"
@@ -603,19 +603,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -626,7 +626,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -635,7 +635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1c3bd32e-8434-4695-9474-aa6600f242aa"
+ "d850e799-85a1-4944-b3d6-da541f3595a0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -644,16 +644,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "82f46568-f8fb-47bf-91ac-fd78e2590061"
+ "d850e799-85a1-4944-b3d6-da541f3595a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145240Z:82f46568-f8fb-47bf-91ac-fd78e2590061"
+ "WESTCENTRALUS:20220322T064805Z:d850e799-85a1-4944-b3d6-da541f3595a0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:52:40 GMT"
+ "Tue, 22 Mar 2022 06:48:05 GMT"
],
"Expires": [
"-1"
@@ -666,19 +666,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -689,7 +689,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -698,7 +698,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a19edb01-3dc9-45f0-88ec-d6fb59a1d419"
+ "cd02fa16-b660-4a4a-8d28-af720e022070"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -707,16 +707,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "4f9cdf60-8a20-43e3-9745-9f7634ad0e30"
+ "cd02fa16-b660-4a4a-8d28-af720e022070"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145341Z:4f9cdf60-8a20-43e3-9745-9f7634ad0e30"
+ "WESTCENTRALUS:20220322T064906Z:cd02fa16-b660-4a4a-8d28-af720e022070"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:53:40 GMT"
+ "Tue, 22 Mar 2022 06:49:05 GMT"
],
"Expires": [
"-1"
@@ -729,19 +729,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -752,7 +752,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -761,7 +761,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a42d073b-f77f-450f-9eb6-9856b4c28510"
+ "db31068a-a03b-4b65-ae5c-bc2c9c0ec09e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -770,16 +770,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "6e5bf61b-a840-4e3a-b9b0-53b5103c0ab6"
+ "db31068a-a03b-4b65-ae5c-bc2c9c0ec09e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145441Z:6e5bf61b-a840-4e3a-b9b0-53b5103c0ab6"
+ "WESTCENTRALUS:20220322T065006Z:db31068a-a03b-4b65-ae5c-bc2c9c0ec09e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:54:41 GMT"
+ "Tue, 22 Mar 2022 06:50:05 GMT"
],
"Expires": [
"-1"
@@ -792,19 +792,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -815,7 +815,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -824,7 +824,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6d71bfb5-86cb-4371-a5bb-ebe1a647b158"
+ "c45c9bcb-dcdf-476f-85bf-5ac4e6553c22"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -833,16 +833,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "b80dfc83-fb8a-4960-bc3b-d233f44cccdc"
+ "c45c9bcb-dcdf-476f-85bf-5ac4e6553c22"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145541Z:b80dfc83-fb8a-4960-bc3b-d233f44cccdc"
+ "WESTCENTRALUS:20220322T065106Z:c45c9bcb-dcdf-476f-85bf-5ac4e6553c22"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:55:41 GMT"
+ "Tue, 22 Mar 2022 06:51:06 GMT"
],
"Expires": [
"-1"
@@ -855,19 +855,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -878,7 +878,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -887,7 +887,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ddc696b4-1829-4877-9c23-36922dc02dee"
+ "31ee62f2-648c-474a-961c-b90842e45623"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -896,16 +896,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "2b6a3659-fcc1-4e48-a234-c97913b40554"
+ "31ee62f2-648c-474a-961c-b90842e45623"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145642Z:2b6a3659-fcc1-4e48-a234-c97913b40554"
+ "WESTCENTRALUS:20220322T065207Z:31ee62f2-648c-474a-961c-b90842e45623"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:56:41 GMT"
+ "Tue, 22 Mar 2022 06:52:06 GMT"
],
"Expires": [
"-1"
@@ -918,19 +918,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -941,7 +941,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -950,7 +950,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "622f5449-be44-4ea7-9341-06506a957168"
+ "3a6e143c-7f52-46f8-9922-493d937d000d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -959,16 +959,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "e7428113-0d3d-4809-9307-87ff7af4d525"
+ "3a6e143c-7f52-46f8-9922-493d937d000d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145742Z:e7428113-0d3d-4809-9307-87ff7af4d525"
+ "WESTCENTRALUS:20220322T065307Z:3a6e143c-7f52-46f8-9922-493d937d000d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:57:42 GMT"
+ "Tue, 22 Mar 2022 06:53:06 GMT"
],
"Expires": [
"-1"
@@ -981,19 +981,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1004,7 +1004,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1013,7 +1013,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "778be0a0-a673-45c0-a205-da0a7e8d2c7e"
+ "f022a794-d174-4be1-a089-2e3de63a8daf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1022,16 +1022,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "d3e6219a-e010-4cd1-a405-7737571f136f"
+ "f022a794-d174-4be1-a089-2e3de63a8daf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145842Z:d3e6219a-e010-4cd1-a405-7737571f136f"
+ "WESTCENTRALUS:20220322T065407Z:f022a794-d174-4be1-a089-2e3de63a8daf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:58:42 GMT"
+ "Tue, 22 Mar 2022 06:54:06 GMT"
],
"Expires": [
"-1"
@@ -1044,19 +1044,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1067,7 +1067,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1076,7 +1076,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "59961d33-4961-4ade-b749-10218be988af"
+ "525ee7c5-5794-4189-8897-96844c03652d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1085,16 +1085,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "948b0380-55b9-4608-82d3-c558362655a4"
+ "525ee7c5-5794-4189-8897-96844c03652d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T145943Z:948b0380-55b9-4608-82d3-c558362655a4"
+ "WESTCENTRALUS:20220322T065507Z:525ee7c5-5794-4189-8897-96844c03652d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 14:59:43 GMT"
+ "Tue, 22 Mar 2022 06:55:07 GMT"
],
"Expires": [
"-1"
@@ -1107,19 +1107,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1130,7 +1130,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1139,7 +1139,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bb41591b-7251-4e15-a6de-047b5a36e6f2"
+ "ecc42f4f-7480-42ef-b507-58a2513d8195"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1148,16 +1148,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "1eab78b7-9ade-4cd0-9b3f-a57d5255e6b1"
+ "ecc42f4f-7480-42ef-b507-58a2513d8195"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150043Z:1eab78b7-9ade-4cd0-9b3f-a57d5255e6b1"
+ "WESTCENTRALUS:20220322T065608Z:ecc42f4f-7480-42ef-b507-58a2513d8195"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:00:42 GMT"
+ "Tue, 22 Mar 2022 06:56:08 GMT"
],
"Expires": [
"-1"
@@ -1170,19 +1170,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1193,7 +1193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1202,7 +1202,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "97e4c693-3fc0-4214-8095-08ea605d4249"
+ "92a6d971-7d53-45f8-8fbd-cbc24508a789"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1211,16 +1211,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "8634b099-d1ac-47bd-8d9a-608604e3c35e"
+ "92a6d971-7d53-45f8-8fbd-cbc24508a789"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150143Z:8634b099-d1ac-47bd-8d9a-608604e3c35e"
+ "WESTCENTRALUS:20220322T065708Z:92a6d971-7d53-45f8-8fbd-cbc24508a789"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:01:43 GMT"
+ "Tue, 22 Mar 2022 06:57:07 GMT"
],
"Expires": [
"-1"
@@ -1233,19 +1233,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1256,7 +1256,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1265,7 +1265,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f0d9e6a-1c45-4084-bec3-6df56af025d5"
+ "7c9266c6-3308-4718-b509-94e15f408bde"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1274,16 +1274,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "87a75d06-fd48-485e-bbf5-f183a4326241"
+ "7c9266c6-3308-4718-b509-94e15f408bde"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150244Z:87a75d06-fd48-485e-bbf5-f183a4326241"
+ "WESTCENTRALUS:20220322T065808Z:7c9266c6-3308-4718-b509-94e15f408bde"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:02:43 GMT"
+ "Tue, 22 Mar 2022 06:58:08 GMT"
],
"Expires": [
"-1"
@@ -1296,19 +1296,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1319,7 +1319,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1328,7 +1328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ca4446ae-ae23-40de-80e1-5ca4e1787782"
+ "f5a1690c-3089-4d1f-8d22-61b31c95f729"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1337,16 +1337,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "aadeb593-7204-45ab-a2bf-0cfcb0eca5f4"
+ "f5a1690c-3089-4d1f-8d22-61b31c95f729"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150344Z:aadeb593-7204-45ab-a2bf-0cfcb0eca5f4"
+ "WESTCENTRALUS:20220322T065909Z:f5a1690c-3089-4d1f-8d22-61b31c95f729"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:03:44 GMT"
+ "Tue, 22 Mar 2022 06:59:09 GMT"
],
"Expires": [
"-1"
@@ -1359,19 +1359,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1382,7 +1382,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1391,7 +1391,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9f03073d-a97d-4262-8940-068cdcf172e1"
+ "8f06d9a9-60e1-4ac2-9a03-4a7977209561"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1400,16 +1400,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "cc0b439c-3df4-41c2-b5a9-87b258b53f10"
+ "8f06d9a9-60e1-4ac2-9a03-4a7977209561"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150445Z:cc0b439c-3df4-41c2-b5a9-87b258b53f10"
+ "WESTCENTRALUS:20220322T070009Z:8f06d9a9-60e1-4ac2-9a03-4a7977209561"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:04:44 GMT"
+ "Tue, 22 Mar 2022 07:00:08 GMT"
],
"Expires": [
"-1"
@@ -1422,19 +1422,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1445,7 +1445,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1454,7 +1454,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "366e63dd-8385-434f-a2a6-58a56d8718f7"
+ "7e77d525-8d77-4354-9b41-fd62e6d14279"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1463,16 +1463,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "922b83a2-6221-48d6-8661-424493b51532"
+ "7e77d525-8d77-4354-9b41-fd62e6d14279"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150545Z:922b83a2-6221-48d6-8661-424493b51532"
+ "WESTCENTRALUS:20220322T070109Z:7e77d525-8d77-4354-9b41-fd62e6d14279"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:05:44 GMT"
+ "Tue, 22 Mar 2022 07:01:09 GMT"
],
"Expires": [
"-1"
@@ -1485,19 +1485,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1508,7 +1508,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1517,7 +1517,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "15c3af06-bc64-439d-a214-da922253a4bf"
+ "0cc99bd9-b6e2-4844-a7c3-a52d5e6dcc33"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1526,16 +1526,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "54c41e87-f203-4dad-acac-0576b84a834b"
+ "0cc99bd9-b6e2-4844-a7c3-a52d5e6dcc33"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150645Z:54c41e87-f203-4dad-acac-0576b84a834b"
+ "WESTCENTRALUS:20220322T070209Z:0cc99bd9-b6e2-4844-a7c3-a52d5e6dcc33"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:06:45 GMT"
+ "Tue, 22 Mar 2022 07:02:09 GMT"
],
"Expires": [
"-1"
@@ -1548,19 +1548,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1571,7 +1571,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1580,7 +1580,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ab253513-d241-4fde-b535-d65dfb6bc355"
+ "0ad08b96-1dbd-4ca7-bea2-f63082c8ed07"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1589,16 +1589,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "c47337f9-a1af-4b1e-9dbc-fb0722c879ed"
+ "0ad08b96-1dbd-4ca7-bea2-f63082c8ed07"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150745Z:c47337f9-a1af-4b1e-9dbc-fb0722c879ed"
+ "WESTCENTRALUS:20220322T070310Z:0ad08b96-1dbd-4ca7-bea2-f63082c8ed07"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:07:45 GMT"
+ "Tue, 22 Mar 2022 07:03:09 GMT"
],
"Expires": [
"-1"
@@ -1611,19 +1611,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1634,7 +1634,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1643,7 +1643,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4c97b1d0-05e0-4124-a70f-06e190ed4328"
+ "419e6b82-d27a-41a9-a407-fc589e56d462"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1652,16 +1652,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "f9924fe9-5ef3-4ba1-801b-7612475e1063"
+ "419e6b82-d27a-41a9-a407-fc589e56d462"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150846Z:f9924fe9-5ef3-4ba1-801b-7612475e1063"
+ "WESTCENTRALUS:20220322T070410Z:419e6b82-d27a-41a9-a407-fc589e56d462"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:08:46 GMT"
+ "Tue, 22 Mar 2022 07:04:10 GMT"
],
"Expires": [
"-1"
@@ -1674,19 +1674,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1697,7 +1697,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1706,7 +1706,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a12c6ff2-17c4-4242-9024-19d53499c300"
+ "fe34256f-1f1b-4ef9-a886-c24623127fa0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1715,16 +1715,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "36efa30b-2b4d-4ea5-85d0-8b5e3ec3360a"
+ "fe34256f-1f1b-4ef9-a886-c24623127fa0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T150946Z:36efa30b-2b4d-4ea5-85d0-8b5e3ec3360a"
+ "WESTCENTRALUS:20220322T070510Z:fe34256f-1f1b-4ef9-a886-c24623127fa0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:09:46 GMT"
+ "Tue, 22 Mar 2022 07:05:10 GMT"
],
"Expires": [
"-1"
@@ -1737,19 +1737,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1760,7 +1760,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1769,7 +1769,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c8413a0d-6c78-4029-b75b-61456c5956da"
+ "37e2f7c5-e28a-4d14-8cce-9162e8bebdf1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1778,16 +1778,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "85044a91-0441-43c1-a48a-3ffd81b36b96"
+ "37e2f7c5-e28a-4d14-8cce-9162e8bebdf1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151046Z:85044a91-0441-43c1-a48a-3ffd81b36b96"
+ "WESTCENTRALUS:20220322T070610Z:37e2f7c5-e28a-4d14-8cce-9162e8bebdf1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:10:46 GMT"
+ "Tue, 22 Mar 2022 07:06:10 GMT"
],
"Expires": [
"-1"
@@ -1800,19 +1800,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1823,7 +1823,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1832,7 +1832,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3bfad46f-6f77-4d43-9834-1f2430dded70"
+ "afdcd3da-4dbd-46d7-b3b1-3fcd4ed00489"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1841,16 +1841,16 @@
"11974"
],
"x-ms-correlation-request-id": [
- "67bcb272-ed51-4428-8230-8abc14deab28"
+ "afdcd3da-4dbd-46d7-b3b1-3fcd4ed00489"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151147Z:67bcb272-ed51-4428-8230-8abc14deab28"
+ "WESTCENTRALUS:20220322T070711Z:afdcd3da-4dbd-46d7-b3b1-3fcd4ed00489"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:11:46 GMT"
+ "Tue, 22 Mar 2022 07:07:10 GMT"
],
"Expires": [
"-1"
@@ -1863,19 +1863,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9BY3RfYmFlMzlmM2U=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5QlkzUmZZbUZsTXpsbU0yVT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "d9e12e6d-0646-494e-9302-3073ea5f53c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1885,17 +1885,11 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0451edd7-9ea5-4102-a86a-cbe48b8641a7"
+ "ec4b5563-8d4e-41b6-b315-296cd823d960"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1904,41 +1898,44 @@
"11973"
],
"x-ms-correlation-request-id": [
- "e609f979-64db-4e65-924f-54c41b6cd9c1"
+ "ec4b5563-8d4e-41b6-b315-296cd823d960"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151247Z:e609f979-64db-4e65-924f-54c41b6cd9c1"
+ "WESTCENTRALUS:20220322T070811Z:ec4b5563-8d4e-41b6-b315-296cd823d960"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:12:47 GMT"
+ "Tue, 22 Mar 2022 07:08:11 GMT"
+ ],
+ "Content-Length": [
+ "5109"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860\",\r\n \"name\": \"ps6860\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWz5k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T06:40:59.9611019Z\",\r\n \"gatewayUrl\": \"https://ps6860.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6860-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6860.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6860.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6860.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6860.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6860.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershelltest.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://powershell-apim-kv.vault.azure.net/secrets/powershell-current\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2023-01-21T05:35:19-08:00\",\r\n \"thumbprint\": \"A57EE49AF3CF420AC04F3FACBD6B9A9F2486BCD0\",\r\n \"subject\": \"CN=powershelltest.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\",\r\n \"certificateSource\": \"KeyVault\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.119.121.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T06:40:59.356183Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T06:40:59.356183Z\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1949,7 +1946,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1958,7 +1955,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c42a1bc6-5b94-4bee-ad99-29fa02fdc2d0"
+ "507b42f5-5ea8-4a7e-8474-b9e9da110c1a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1967,16 +1964,16 @@
"11972"
],
"x-ms-correlation-request-id": [
- "9c3ddf29-7743-4f0a-8d7c-f2907a30bb06"
+ "507b42f5-5ea8-4a7e-8474-b9e9da110c1a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151348Z:9c3ddf29-7743-4f0a-8d7c-f2907a30bb06"
+ "WESTCENTRALUS:20220322T070912Z:507b42f5-5ea8-4a7e-8474-b9e9da110c1a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:13:47 GMT"
+ "Tue, 22 Mar 2022 07:09:11 GMT"
],
"Expires": [
"-1"
@@ -1989,19 +1986,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2012,7 +2009,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2021,7 +2018,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f74e1f1d-0fe7-4a00-b99c-f342fa408bfd"
+ "3febebc7-4eae-4104-88b7-655cbe061dea"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2030,16 +2027,16 @@
"11971"
],
"x-ms-correlation-request-id": [
- "9cdc8475-c753-418b-b994-38c6b3035eeb"
+ "3febebc7-4eae-4104-88b7-655cbe061dea"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151448Z:9cdc8475-c753-418b-b994-38c6b3035eeb"
+ "WESTCENTRALUS:20220322T071013Z:3febebc7-4eae-4104-88b7-655cbe061dea"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:14:47 GMT"
+ "Tue, 22 Mar 2022 07:10:12 GMT"
],
"Expires": [
"-1"
@@ -2052,19 +2049,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2075,7 +2072,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2084,7 +2081,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d234adcc-4aae-4783-b202-46682b17d7c2"
+ "60f24a09-85d2-4489-8f8b-8b11657f6b33"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2093,16 +2090,16 @@
"11970"
],
"x-ms-correlation-request-id": [
- "0c4a0d4a-c9e0-4bae-bcc7-b2ab60053178"
+ "60f24a09-85d2-4489-8f8b-8b11657f6b33"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151548Z:0c4a0d4a-c9e0-4bae-bcc7-b2ab60053178"
+ "WESTCENTRALUS:20220322T071113Z:60f24a09-85d2-4489-8f8b-8b11657f6b33"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:15:48 GMT"
+ "Tue, 22 Mar 2022 07:11:12 GMT"
],
"Expires": [
"-1"
@@ -2115,19 +2112,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2138,7 +2135,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2147,7 +2144,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1d21a56b-a961-4d9e-a2ee-c731aaec9d7e"
+ "b4ef97ad-9451-479b-82d6-83c6cd80945e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2156,16 +2153,16 @@
"11969"
],
"x-ms-correlation-request-id": [
- "3381bdf1-bed1-420b-bfd9-13c4687913f0"
+ "b4ef97ad-9451-479b-82d6-83c6cd80945e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151649Z:3381bdf1-bed1-420b-bfd9-13c4687913f0"
+ "WESTCENTRALUS:20220322T071213Z:b4ef97ad-9451-479b-82d6-83c6cd80945e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:16:48 GMT"
+ "Tue, 22 Mar 2022 07:12:13 GMT"
],
"Expires": [
"-1"
@@ -2178,19 +2175,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2201,7 +2198,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2210,7 +2207,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84e9c192-c0d1-4035-81d0-dd0bab901079"
+ "463b0700-b751-4a98-a9d4-3b110babb356"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2219,16 +2216,16 @@
"11968"
],
"x-ms-correlation-request-id": [
- "2bfb5540-c188-4026-b4c4-6f5c186bb04b"
+ "463b0700-b751-4a98-a9d4-3b110babb356"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151749Z:2bfb5540-c188-4026-b4c4-6f5c186bb04b"
+ "WESTCENTRALUS:20220322T071313Z:463b0700-b751-4a98-a9d4-3b110babb356"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:17:49 GMT"
+ "Tue, 22 Mar 2022 07:13:12 GMT"
],
"Expires": [
"-1"
@@ -2241,19 +2238,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2264,7 +2261,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2273,7 +2270,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a80d091-8fa7-4e0a-8dbf-16a3cd6c747a"
+ "d67c5566-fe66-424e-b068-a0445a823eec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2282,16 +2279,16 @@
"11967"
],
"x-ms-correlation-request-id": [
- "b14fbd09-55cf-4216-ae45-24156365ddee"
+ "d67c5566-fe66-424e-b068-a0445a823eec"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151849Z:b14fbd09-55cf-4216-ae45-24156365ddee"
+ "WESTCENTRALUS:20220322T071414Z:d67c5566-fe66-424e-b068-a0445a823eec"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:18:49 GMT"
+ "Tue, 22 Mar 2022 07:14:13 GMT"
],
"Expires": [
"-1"
@@ -2304,19 +2301,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2326,11 +2323,17 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "50c3ae9d-6d8c-4c94-a203-a2b078a5be57"
+ "3d9d98aa-9f3b-4141-884b-81c28b0b406a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2339,44 +2342,41 @@
"11966"
],
"x-ms-correlation-request-id": [
- "07618bed-da58-4bed-9761-88006d9772e1"
+ "3d9d98aa-9f3b-4141-884b-81c28b0b406a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T151950Z:07618bed-da58-4bed-9761-88006d9772e1"
+ "WESTCENTRALUS:20220322T071514Z:3d9d98aa-9f3b-4141-884b-81c28b0b406a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:19:49 GMT"
- ],
- "Content-Length": [
- "4388"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Tue, 22 Mar 2022 07:15:14 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371\",\r\n \"name\": \"ps8371\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5hD4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T14:45:34.4771291Z\",\r\n \"gatewayUrl\": \"https://ps8371.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8371-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8371.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8371.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8371.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8371.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8371.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershelltest.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://powershell-apim-kv.vault.azure.net/secrets/powershell-current\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-06-22T09:18:52-07:00\",\r\n \"thumbprint\": \"4B50EDDE5E1D93013778CDAE90638DDB283F42FE\",\r\n \"subject\": \"CN=powershelltest.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"mgmt.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"devportalsdk.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.166.223\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2387,7 +2387,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2396,7 +2396,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "16e53865-d55f-4969-acfb-855852ea6d41"
+ "52ba82d5-bd9a-4fe6-8471-80920d8f165d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2405,16 +2405,16 @@
"11965"
],
"x-ms-correlation-request-id": [
- "dd6e6cc8-2a2c-4456-89fa-f70689520d2f"
+ "52ba82d5-bd9a-4fe6-8471-80920d8f165d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152051Z:dd6e6cc8-2a2c-4456-89fa-f70689520d2f"
+ "WESTCENTRALUS:20220322T071614Z:52ba82d5-bd9a-4fe6-8471-80920d8f165d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:20:51 GMT"
+ "Tue, 22 Mar 2022 07:16:13 GMT"
],
"Expires": [
"-1"
@@ -2427,19 +2427,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2450,7 +2450,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2459,7 +2459,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "58163bfa-75f1-470f-97c3-5ae5fbb7208c"
+ "7fabb2ea-755d-449a-b7d3-06e1ac32b018"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2468,16 +2468,16 @@
"11964"
],
"x-ms-correlation-request-id": [
- "316622c5-0339-492b-be73-8c426d47acd8"
+ "7fabb2ea-755d-449a-b7d3-06e1ac32b018"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152152Z:316622c5-0339-492b-be73-8c426d47acd8"
+ "WESTCENTRALUS:20220322T071715Z:7fabb2ea-755d-449a-b7d3-06e1ac32b018"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:21:51 GMT"
+ "Tue, 22 Mar 2022 07:17:14 GMT"
],
"Expires": [
"-1"
@@ -2490,19 +2490,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2513,7 +2513,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2522,7 +2522,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "144a170a-e41c-4aac-a431-067abaac8197"
+ "5fcf503a-b1b8-4c77-bdd0-c02a8d2f4e45"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2531,16 +2531,16 @@
"11963"
],
"x-ms-correlation-request-id": [
- "5d416432-0c89-46e7-a0ce-811c3d8b7b77"
+ "5fcf503a-b1b8-4c77-bdd0-c02a8d2f4e45"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152252Z:5d416432-0c89-46e7-a0ce-811c3d8b7b77"
+ "WESTCENTRALUS:20220322T071815Z:5fcf503a-b1b8-4c77-bdd0-c02a8d2f4e45"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:22:51 GMT"
+ "Tue, 22 Mar 2022 07:18:14 GMT"
],
"Expires": [
"-1"
@@ -2553,19 +2553,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2576,7 +2576,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2585,7 +2585,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fed97340-43a1-4587-a012-206e88be5553"
+ "e156fe3c-e064-448c-907a-6f5c2bcbaf56"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2594,16 +2594,16 @@
"11962"
],
"x-ms-correlation-request-id": [
- "051d3ac8-0d06-4347-80d4-ed6d80d79999"
+ "e156fe3c-e064-448c-907a-6f5c2bcbaf56"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152352Z:051d3ac8-0d06-4347-80d4-ed6d80d79999"
+ "WESTCENTRALUS:20220322T071915Z:e156fe3c-e064-448c-907a-6f5c2bcbaf56"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:23:52 GMT"
+ "Tue, 22 Mar 2022 07:19:15 GMT"
],
"Expires": [
"-1"
@@ -2616,19 +2616,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2639,7 +2639,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2648,7 +2648,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "72ee023f-7626-4cd5-a67c-717bb8835729"
+ "78f5648f-5fd9-4a9f-bdd5-3ded5ad88ef9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2657,16 +2657,16 @@
"11961"
],
"x-ms-correlation-request-id": [
- "3d37d62e-36b5-41d0-93a7-cb7da7121e65"
+ "78f5648f-5fd9-4a9f-bdd5-3ded5ad88ef9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152453Z:3d37d62e-36b5-41d0-93a7-cb7da7121e65"
+ "WESTCENTRALUS:20220322T072015Z:78f5648f-5fd9-4a9f-bdd5-3ded5ad88ef9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:24:52 GMT"
+ "Tue, 22 Mar 2022 07:20:15 GMT"
],
"Expires": [
"-1"
@@ -2679,19 +2679,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2702,7 +2702,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2711,7 +2711,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dd80ff3e-4409-4ab6-8594-76dfef501264"
+ "c3d8cea8-a517-4079-9a06-aba078869c0b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2720,16 +2720,16 @@
"11960"
],
"x-ms-correlation-request-id": [
- "aeb93a48-10aa-4c86-a3f0-6b26dd3a65f1"
+ "c3d8cea8-a517-4079-9a06-aba078869c0b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152553Z:aeb93a48-10aa-4c86-a3f0-6b26dd3a65f1"
+ "WESTCENTRALUS:20220322T072116Z:c3d8cea8-a517-4079-9a06-aba078869c0b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:25:53 GMT"
+ "Tue, 22 Mar 2022 07:21:15 GMT"
],
"Expires": [
"-1"
@@ -2742,19 +2742,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2765,7 +2765,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2774,7 +2774,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c69eeec4-0b44-4e75-a289-917f85914958"
+ "efc733ba-01b7-4f9e-8f43-9270ca7c368f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2783,16 +2783,16 @@
"11959"
],
"x-ms-correlation-request-id": [
- "b5647537-2a58-4e2e-859d-587ea7eb24a7"
+ "efc733ba-01b7-4f9e-8f43-9270ca7c368f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152653Z:b5647537-2a58-4e2e-859d-587ea7eb24a7"
+ "WESTCENTRALUS:20220322T072216Z:efc733ba-01b7-4f9e-8f43-9270ca7c368f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:26:53 GMT"
+ "Tue, 22 Mar 2022 07:22:16 GMT"
],
"Expires": [
"-1"
@@ -2805,19 +2805,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2828,7 +2828,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2837,7 +2837,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a8c47c51-5cbf-41be-8c3d-7ece9967db75"
+ "2b34f0e5-b3e8-46e9-a345-34f3a4023a44"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2846,16 +2846,16 @@
"11958"
],
"x-ms-correlation-request-id": [
- "8fb64974-c3ec-47f3-a40d-1ead1f4f1110"
+ "2b34f0e5-b3e8-46e9-a345-34f3a4023a44"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152754Z:8fb64974-c3ec-47f3-a40d-1ead1f4f1110"
+ "WESTCENTRALUS:20220322T072316Z:2b34f0e5-b3e8-46e9-a345-34f3a4023a44"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:27:54 GMT"
+ "Tue, 22 Mar 2022 07:23:16 GMT"
],
"Expires": [
"-1"
@@ -2868,19 +2868,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2891,7 +2891,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2900,7 +2900,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "188f9ac6-b8b0-4ac9-80a3-034dc4529501"
+ "3e1f43ee-d2f6-42da-955b-68b2dc4b6d9a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2909,16 +2909,16 @@
"11957"
],
"x-ms-correlation-request-id": [
- "c3d7c76d-9d68-42b5-b1f4-cf85b9b423de"
+ "3e1f43ee-d2f6-42da-955b-68b2dc4b6d9a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152854Z:c3d7c76d-9d68-42b5-b1f4-cf85b9b423de"
+ "WESTCENTRALUS:20220322T072417Z:3e1f43ee-d2f6-42da-955b-68b2dc4b6d9a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:28:53 GMT"
+ "Tue, 22 Mar 2022 07:24:16 GMT"
],
"Expires": [
"-1"
@@ -2931,19 +2931,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2954,7 +2954,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2963,7 +2963,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "99b9c694-18b7-45e5-b08d-c9533cfbf3bb"
+ "f88462a3-e403-4d79-b65d-05056e1a295c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2972,16 +2972,16 @@
"11956"
],
"x-ms-correlation-request-id": [
- "52f6801a-b319-497f-b9cc-167659644901"
+ "f88462a3-e403-4d79-b65d-05056e1a295c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T152954Z:52f6801a-b319-497f-b9cc-167659644901"
+ "WESTCENTRALUS:20220322T072517Z:f88462a3-e403-4d79-b65d-05056e1a295c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:29:54 GMT"
+ "Tue, 22 Mar 2022 07:25:16 GMT"
],
"Expires": [
"-1"
@@ -2994,19 +2994,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3017,7 +3017,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3026,7 +3026,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d48a3174-0cf7-4f14-b445-2d695a3359c8"
+ "22130718-92d2-48c5-890d-d3b4f0606f18"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3035,16 +3035,16 @@
"11955"
],
"x-ms-correlation-request-id": [
- "f9c00b4a-fffe-4f7f-984a-f6fbbe3794f6"
+ "22130718-92d2-48c5-890d-d3b4f0606f18"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153055Z:f9c00b4a-fffe-4f7f-984a-f6fbbe3794f6"
+ "WESTCENTRALUS:20220322T072617Z:22130718-92d2-48c5-890d-d3b4f0606f18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:30:54 GMT"
+ "Tue, 22 Mar 2022 07:26:17 GMT"
],
"Expires": [
"-1"
@@ -3057,19 +3057,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3080,7 +3080,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3089,7 +3089,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eddd6ad7-d61d-4c01-89c2-61bc5713bd5e"
+ "1916cc88-6bad-4775-ba4d-0711ebccfb1d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3098,16 +3098,16 @@
"11954"
],
"x-ms-correlation-request-id": [
- "c3969042-d2ee-4696-a8b1-af6186e2881b"
+ "1916cc88-6bad-4775-ba4d-0711ebccfb1d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153155Z:c3969042-d2ee-4696-a8b1-af6186e2881b"
+ "WESTCENTRALUS:20220322T072717Z:1916cc88-6bad-4775-ba4d-0711ebccfb1d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:31:55 GMT"
+ "Tue, 22 Mar 2022 07:27:17 GMT"
],
"Expires": [
"-1"
@@ -3120,19 +3120,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3143,7 +3143,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3152,7 +3152,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f589a23a-f5d2-485d-b450-4369bb061b1a"
+ "8dc78c0a-e91c-42f6-ba49-d9253e0a7d5c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3161,16 +3161,16 @@
"11953"
],
"x-ms-correlation-request-id": [
- "77acf173-d2eb-481b-96fb-1839327eb72a"
+ "8dc78c0a-e91c-42f6-ba49-d9253e0a7d5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153255Z:77acf173-d2eb-481b-96fb-1839327eb72a"
+ "WESTCENTRALUS:20220322T072817Z:8dc78c0a-e91c-42f6-ba49-d9253e0a7d5c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:32:55 GMT"
+ "Tue, 22 Mar 2022 07:28:17 GMT"
],
"Expires": [
"-1"
@@ -3183,19 +3183,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3206,7 +3206,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3215,7 +3215,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "567f1bb0-e825-4fa3-b95b-ffac808fa7e7"
+ "433c583e-0c2e-4302-a1e4-4e82f2c60cd4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3224,16 +3224,16 @@
"11952"
],
"x-ms-correlation-request-id": [
- "3272ea4e-1583-4608-b410-a1f66cca9f09"
+ "433c583e-0c2e-4302-a1e4-4e82f2c60cd4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153356Z:3272ea4e-1583-4608-b410-a1f66cca9f09"
+ "WESTCENTRALUS:20220322T072918Z:433c583e-0c2e-4302-a1e4-4e82f2c60cd4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:33:55 GMT"
+ "Tue, 22 Mar 2022 07:29:17 GMT"
],
"Expires": [
"-1"
@@ -3246,19 +3246,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3269,7 +3269,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3278,7 +3278,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1a9b3a63-74d8-4cf9-bcbb-42a4a6d574ce"
+ "b92fe3a0-b793-4ef4-a7a5-be6a885efbb2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3287,16 +3287,16 @@
"11951"
],
"x-ms-correlation-request-id": [
- "3398027d-13d8-4ce1-a1a3-6e1f68fa1efb"
+ "b92fe3a0-b793-4ef4-a7a5-be6a885efbb2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153456Z:3398027d-13d8-4ce1-a1a3-6e1f68fa1efb"
+ "WESTCENTRALUS:20220322T073018Z:b92fe3a0-b793-4ef4-a7a5-be6a885efbb2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:34:56 GMT"
+ "Tue, 22 Mar 2022 07:30:18 GMT"
],
"Expires": [
"-1"
@@ -3309,19 +3309,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3332,7 +3332,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3341,7 +3341,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "213fc9c3-e307-4db7-a70b-fe841a099dde"
+ "ec6fa2ce-a503-41cb-9b18-69b94a7408d6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3350,16 +3350,16 @@
"11950"
],
"x-ms-correlation-request-id": [
- "0c926c6c-cdde-4ba0-a2b0-90735b766562"
+ "ec6fa2ce-a503-41cb-9b18-69b94a7408d6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153556Z:0c926c6c-cdde-4ba0-a2b0-90735b766562"
+ "WESTCENTRALUS:20220322T073118Z:ec6fa2ce-a503-41cb-9b18-69b94a7408d6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:35:55 GMT"
+ "Tue, 22 Mar 2022 07:31:17 GMT"
],
"Expires": [
"-1"
@@ -3372,19 +3372,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3395,7 +3395,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3404,7 +3404,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "28f5565c-9436-40d2-b74b-7c957314eafd"
+ "dffb3833-6957-4310-8d6f-86f8a4bcd526"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3413,16 +3413,16 @@
"11949"
],
"x-ms-correlation-request-id": [
- "639877bf-bab6-4da6-98af-15820007bee4"
+ "dffb3833-6957-4310-8d6f-86f8a4bcd526"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153657Z:639877bf-bab6-4da6-98af-15820007bee4"
+ "WESTCENTRALUS:20220322T073218Z:dffb3833-6957-4310-8d6f-86f8a4bcd526"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:36:56 GMT"
+ "Tue, 22 Mar 2022 07:32:18 GMT"
],
"Expires": [
"-1"
@@ -3435,19 +3435,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3458,7 +3458,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3467,25 +3467,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a20826be-0306-4642-ba0e-4c5f0bb6f4d8"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "7e192ac3-2dc4-4ab6-b5bd-4281e841a217"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11948"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "301a2ac2-11c9-4b9d-af60-fa52fa21e2b2"
+ "7e192ac3-2dc4-4ab6-b5bd-4281e841a217"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153757Z:301a2ac2-11c9-4b9d-af60-fa52fa21e2b2"
+ "WESTCENTRALUS:20220322T073318Z:7e192ac3-2dc4-4ab6-b5bd-4281e841a217"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:37:56 GMT"
+ "Tue, 22 Mar 2022 07:33:17 GMT"
],
"Expires": [
"-1"
@@ -3498,19 +3498,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3521,7 +3521,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3530,7 +3530,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aa730670-9596-41dd-9761-cd68fe8fa638"
+ "32553603-5f0b-4cf7-88ed-17f86e73e6db"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3539,16 +3539,16 @@
"11947"
],
"x-ms-correlation-request-id": [
- "16845188-97a0-48d3-a692-59e29e7fde5c"
+ "32553603-5f0b-4cf7-88ed-17f86e73e6db"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153857Z:16845188-97a0-48d3-a692-59e29e7fde5c"
+ "WESTCENTRALUS:20220322T073419Z:32553603-5f0b-4cf7-88ed-17f86e73e6db"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:38:57 GMT"
+ "Tue, 22 Mar 2022 07:34:18 GMT"
],
"Expires": [
"-1"
@@ -3561,19 +3561,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3584,7 +3584,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3593,7 +3593,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "087b5ed1-1344-48ae-b916-83a920aa225a"
+ "8b57489b-6dd6-4acc-ab2d-98db3e4e659c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3602,16 +3602,16 @@
"11946"
],
"x-ms-correlation-request-id": [
- "deb85b3d-872f-4379-96f4-bc7804e6a17e"
+ "8b57489b-6dd6-4acc-ab2d-98db3e4e659c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T153958Z:deb85b3d-872f-4379-96f4-bc7804e6a17e"
+ "WESTCENTRALUS:20220322T073519Z:8b57489b-6dd6-4acc-ab2d-98db3e4e659c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:39:57 GMT"
+ "Tue, 22 Mar 2022 07:35:19 GMT"
],
"Expires": [
"-1"
@@ -3624,19 +3624,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3647,7 +3647,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3656,7 +3656,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7a6ffa1f-3f5c-4c56-b0aa-2853f5fc2b94"
+ "492835e8-bd0f-4a18-b179-8f938c8fe90d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3665,16 +3665,16 @@
"11945"
],
"x-ms-correlation-request-id": [
- "7c1933b6-1ebe-400e-8a2a-4724d36a1e67"
+ "492835e8-bd0f-4a18-b179-8f938c8fe90d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154058Z:7c1933b6-1ebe-400e-8a2a-4724d36a1e67"
+ "WESTCENTRALUS:20220322T073619Z:492835e8-bd0f-4a18-b179-8f938c8fe90d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:40:57 GMT"
+ "Tue, 22 Mar 2022 07:36:19 GMT"
],
"Expires": [
"-1"
@@ -3687,19 +3687,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860/operationresults/ZWFzdHVzOnBzNjg2MF9VcGRhdGVfZTI3NmM1ODk=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY4NjAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpOamcyTUY5VmNHUmhkR1ZmWlRJM05tTTFPRGs9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ "9f4a2747-adab-42c7-96a1-aa5fc0019a06"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3713,7 +3713,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2cbeb03e-29d7-4f8e-bb49-362ac7d5c626"
+ "0647c50e-b3af-4bad-8bd3-cc5620485d40"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3722,19 +3722,19 @@
"11944"
],
"x-ms-correlation-request-id": [
- "ce03b679-7b70-4ff5-a094-ef953b71ea18"
+ "0647c50e-b3af-4bad-8bd3-cc5620485d40"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154158Z:ce03b679-7b70-4ff5-a094-ef953b71ea18"
+ "WESTCENTRALUS:20220322T073720Z:0647c50e-b3af-4bad-8bd3-cc5620485d40"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:41:58 GMT"
+ "Tue, 22 Mar 2022 07:37:19 GMT"
],
"Content-Length": [
- "3053"
+ "3557"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3743,26 +3743,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371\",\r\n \"name\": \"ps8371\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5hKg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T14:45:34.4771291Z\",\r\n \"gatewayUrl\": \"https://ps8371.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8371-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8371.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8371.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8371.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8371.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8371.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.166.223\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8518/providers/Microsoft.ApiManagement/service/ps6860\",\r\n \"name\": \"ps6860\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABW0CU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T06:40:59.9611019Z\",\r\n \"gatewayUrl\": \"https://ps6860.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6860-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6860.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6860.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6860.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6860.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6860.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.119.121.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T06:40:59.356183Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T07:08:12.0868597Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps38?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8518?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODUxOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "161dc4bd-2268-4682-b97e-c1400a71acb7"
+ "9f8dde04-861c-4b38-805b-9788f2aaee77"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3773,7 +3773,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3782,13 +3782,13 @@
"14999"
],
"x-ms-request-id": [
- "45db37e3-2563-4caf-aa0c-224bd390ceb6"
+ "469f5be2-1784-4a9f-b803-0df4c20fa91f"
],
"x-ms-correlation-request-id": [
- "45db37e3-2563-4caf-aa0c-224bd390ceb6"
+ "469f5be2-1784-4a9f-b803-0df4c20fa91f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154200Z:45db37e3-2563-4caf-aa0c-224bd390ceb6"
+ "WESTCENTRALUS:20220322T073722Z:469f5be2-1784-4a9f-b803-0df4c20fa91f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3797,7 +3797,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:42:00 GMT"
+ "Tue, 22 Mar 2022 07:37:21 GMT"
],
"Expires": [
"-1"
@@ -3810,16 +3810,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3830,7 +3830,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3839,13 +3839,13 @@
"11999"
],
"x-ms-request-id": [
- "a9cb1873-b827-4ecc-9319-b5c42a1eec3a"
+ "426ca2ed-0994-481d-b811-c4c6109008b9"
],
"x-ms-correlation-request-id": [
- "a9cb1873-b827-4ecc-9319-b5c42a1eec3a"
+ "426ca2ed-0994-481d-b811-c4c6109008b9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154215Z:a9cb1873-b827-4ecc-9319-b5c42a1eec3a"
+ "WESTCENTRALUS:20220322T073737Z:426ca2ed-0994-481d-b811-c4c6109008b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3854,7 +3854,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:42:15 GMT"
+ "Tue, 22 Mar 2022 07:37:36 GMT"
],
"Expires": [
"-1"
@@ -3867,16 +3867,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3887,7 +3887,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3896,13 +3896,13 @@
"11998"
],
"x-ms-request-id": [
- "3ec046a2-e118-44b9-a7a1-97d77c4d822d"
+ "f3793e71-d179-4679-803e-5aaaf50cec32"
],
"x-ms-correlation-request-id": [
- "3ec046a2-e118-44b9-a7a1-97d77c4d822d"
+ "f3793e71-d179-4679-803e-5aaaf50cec32"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154231Z:3ec046a2-e118-44b9-a7a1-97d77c4d822d"
+ "WESTCENTRALUS:20220322T073752Z:f3793e71-d179-4679-803e-5aaaf50cec32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3911,7 +3911,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:42:30 GMT"
+ "Tue, 22 Mar 2022 07:37:51 GMT"
],
"Expires": [
"-1"
@@ -3924,16 +3924,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3944,7 +3944,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3953,13 +3953,13 @@
"11997"
],
"x-ms-request-id": [
- "3392b35c-005f-469e-acf4-1ef89aa91a87"
+ "531b677c-b713-4d88-8512-909104ec0ef8"
],
"x-ms-correlation-request-id": [
- "3392b35c-005f-469e-acf4-1ef89aa91a87"
+ "531b677c-b713-4d88-8512-909104ec0ef8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154246Z:3392b35c-005f-469e-acf4-1ef89aa91a87"
+ "WESTCENTRALUS:20220322T073807Z:531b677c-b713-4d88-8512-909104ec0ef8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3968,7 +3968,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:42:46 GMT"
+ "Tue, 22 Mar 2022 07:38:06 GMT"
],
"Expires": [
"-1"
@@ -3981,16 +3981,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4001,7 +4001,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4010,13 +4010,13 @@
"11996"
],
"x-ms-request-id": [
- "215c6998-bb06-4304-94f0-1c2e27d4f85f"
+ "2b762b51-6e7c-4122-8477-519837939e48"
],
"x-ms-correlation-request-id": [
- "215c6998-bb06-4304-94f0-1c2e27d4f85f"
+ "2b762b51-6e7c-4122-8477-519837939e48"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154301Z:215c6998-bb06-4304-94f0-1c2e27d4f85f"
+ "WESTCENTRALUS:20220322T073822Z:2b762b51-6e7c-4122-8477-519837939e48"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4025,7 +4025,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:43:01 GMT"
+ "Tue, 22 Mar 2022 07:38:22 GMT"
],
"Expires": [
"-1"
@@ -4038,16 +4038,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4058,7 +4058,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4067,13 +4067,13 @@
"11995"
],
"x-ms-request-id": [
- "f4cc1cde-39f3-45f9-80b8-1d2fa29ec9ff"
+ "8420385c-03ba-496a-9281-9341e45470a8"
],
"x-ms-correlation-request-id": [
- "f4cc1cde-39f3-45f9-80b8-1d2fa29ec9ff"
+ "8420385c-03ba-496a-9281-9341e45470a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154316Z:f4cc1cde-39f3-45f9-80b8-1d2fa29ec9ff"
+ "WESTCENTRALUS:20220322T073838Z:8420385c-03ba-496a-9281-9341e45470a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4082,7 +4082,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:43:16 GMT"
+ "Tue, 22 Mar 2022 07:38:37 GMT"
],
"Expires": [
"-1"
@@ -4095,16 +4095,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4115,7 +4115,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4124,13 +4124,13 @@
"11994"
],
"x-ms-request-id": [
- "987f8545-59aa-4a1e-8f5c-c20c8b34348f"
+ "8e71cda7-8bdd-474a-a238-382d4673d053"
],
"x-ms-correlation-request-id": [
- "987f8545-59aa-4a1e-8f5c-c20c8b34348f"
+ "8e71cda7-8bdd-474a-a238-382d4673d053"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154331Z:987f8545-59aa-4a1e-8f5c-c20c8b34348f"
+ "WESTCENTRALUS:20220322T073853Z:8e71cda7-8bdd-474a-a238-382d4673d053"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4139,7 +4139,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:43:31 GMT"
+ "Tue, 22 Mar 2022 07:38:52 GMT"
],
"Expires": [
"-1"
@@ -4152,16 +4152,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4172,7 +4172,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4181,13 +4181,13 @@
"11993"
],
"x-ms-request-id": [
- "6556aa60-c87c-439a-95bc-dfb36d28144b"
+ "320bd15d-45be-4a7f-a293-eb0a15fb5fc4"
],
"x-ms-correlation-request-id": [
- "6556aa60-c87c-439a-95bc-dfb36d28144b"
+ "320bd15d-45be-4a7f-a293-eb0a15fb5fc4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154347Z:6556aa60-c87c-439a-95bc-dfb36d28144b"
+ "WESTCENTRALUS:20220322T073908Z:320bd15d-45be-4a7f-a293-eb0a15fb5fc4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4196,7 +4196,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:43:46 GMT"
+ "Tue, 22 Mar 2022 07:39:07 GMT"
],
"Expires": [
"-1"
@@ -4209,16 +4209,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4229,7 +4229,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4238,13 +4238,13 @@
"11992"
],
"x-ms-request-id": [
- "fa547149-638e-49ca-a287-e0d4a7938c68"
+ "b9f404c7-a83c-4c68-888b-51b1af13902e"
],
"x-ms-correlation-request-id": [
- "fa547149-638e-49ca-a287-e0d4a7938c68"
+ "b9f404c7-a83c-4c68-888b-51b1af13902e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154402Z:fa547149-638e-49ca-a287-e0d4a7938c68"
+ "WESTCENTRALUS:20220322T073923Z:b9f404c7-a83c-4c68-888b-51b1af13902e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4253,7 +4253,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:44:01 GMT"
+ "Tue, 22 Mar 2022 07:39:22 GMT"
],
"Expires": [
"-1"
@@ -4266,16 +4266,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4286,7 +4286,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4295,13 +4295,13 @@
"11991"
],
"x-ms-request-id": [
- "0b667c19-ba15-46ed-9e47-6bc83129ea8b"
+ "9d73dfa3-03b3-4362-a9ad-d4fefe60c85a"
],
"x-ms-correlation-request-id": [
- "0b667c19-ba15-46ed-9e47-6bc83129ea8b"
+ "9d73dfa3-03b3-4362-a9ad-d4fefe60c85a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154417Z:0b667c19-ba15-46ed-9e47-6bc83129ea8b"
+ "WESTCENTRALUS:20220322T073938Z:9d73dfa3-03b3-4362-a9ad-d4fefe60c85a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4310,7 +4310,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:44:16 GMT"
+ "Tue, 22 Mar 2022 07:39:38 GMT"
],
"Expires": [
"-1"
@@ -4323,16 +4323,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4343,7 +4343,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4352,13 +4352,13 @@
"11990"
],
"x-ms-request-id": [
- "a3d99b36-ee0f-4f50-a595-8d161e753e38"
+ "ecf5ff0e-8c05-4237-ad7e-557b944e62a7"
],
"x-ms-correlation-request-id": [
- "a3d99b36-ee0f-4f50-a595-8d161e753e38"
+ "ecf5ff0e-8c05-4237-ad7e-557b944e62a7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154432Z:a3d99b36-ee0f-4f50-a595-8d161e753e38"
+ "WESTCENTRALUS:20220322T073953Z:ecf5ff0e-8c05-4237-ad7e-557b944e62a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4367,7 +4367,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:44:31 GMT"
+ "Tue, 22 Mar 2022 07:39:53 GMT"
],
"Expires": [
"-1"
@@ -4380,16 +4380,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4400,7 +4400,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4409,13 +4409,13 @@
"11989"
],
"x-ms-request-id": [
- "77c94167-691a-4221-b7fb-9474b9ed998e"
+ "1ea4ac1a-5d18-4c2b-aa44-f4fa6465b237"
],
"x-ms-correlation-request-id": [
- "77c94167-691a-4221-b7fb-9474b9ed998e"
+ "1ea4ac1a-5d18-4c2b-aa44-f4fa6465b237"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154447Z:77c94167-691a-4221-b7fb-9474b9ed998e"
+ "WESTCENTRALUS:20220322T074008Z:1ea4ac1a-5d18-4c2b-aa44-f4fa6465b237"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4424,7 +4424,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:44:46 GMT"
+ "Tue, 22 Mar 2022 07:40:08 GMT"
],
"Expires": [
"-1"
@@ -4437,16 +4437,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4457,7 +4457,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4466,13 +4466,13 @@
"11988"
],
"x-ms-request-id": [
- "44f24964-f7ef-4943-95ca-d580a2bd3dde"
+ "ff0e0edb-724e-41f6-9e98-06718240c34e"
],
"x-ms-correlation-request-id": [
- "44f24964-f7ef-4943-95ca-d580a2bd3dde"
+ "ff0e0edb-724e-41f6-9e98-06718240c34e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154502Z:44f24964-f7ef-4943-95ca-d580a2bd3dde"
+ "WESTCENTRALUS:20220322T074023Z:ff0e0edb-724e-41f6-9e98-06718240c34e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4481,7 +4481,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:45:02 GMT"
+ "Tue, 22 Mar 2022 07:40:23 GMT"
],
"Expires": [
"-1"
@@ -4494,16 +4494,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4514,7 +4514,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4523,13 +4523,13 @@
"11987"
],
"x-ms-request-id": [
- "b61050ee-fb23-4506-bc57-b8252c43303a"
+ "dca8e818-8623-42bf-9c2e-870791916b14"
],
"x-ms-correlation-request-id": [
- "b61050ee-fb23-4506-bc57-b8252c43303a"
+ "dca8e818-8623-42bf-9c2e-870791916b14"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154518Z:b61050ee-fb23-4506-bc57-b8252c43303a"
+ "WESTCENTRALUS:20220322T074039Z:dca8e818-8623-42bf-9c2e-870791916b14"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4538,7 +4538,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:45:17 GMT"
+ "Tue, 22 Mar 2022 07:40:38 GMT"
],
"Expires": [
"-1"
@@ -4551,16 +4551,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4570,17 +4570,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11986"
],
"x-ms-request-id": [
- "9d09b302-4fba-4849-b400-57fb347583a0"
+ "1be60126-e23d-412b-8074-9d3693118b2a"
],
"x-ms-correlation-request-id": [
- "9d09b302-4fba-4849-b400-57fb347583a0"
+ "1be60126-e23d-412b-8074-9d3693118b2a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154533Z:9d09b302-4fba-4849-b400-57fb347583a0"
+ "WESTCENTRALUS:20220322T074054Z:1be60126-e23d-412b-8074-9d3693118b2a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4589,7 +4595,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:45:32 GMT"
+ "Tue, 22 Mar 2022 07:40:54 GMT"
],
"Expires": [
"-1"
@@ -4599,19 +4605,19 @@
]
},
"ResponseBody": "",
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4621,17 +4627,182 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11985"
],
"x-ms-request-id": [
- "20f8edf4-4473-46cb-ab88-815614eddd36"
+ "0c621b2b-7b00-40a5-8baf-a7141f9efe84"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c621b2b-7b00-40a5-8baf-a7141f9efe84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220322T074109Z:0c621b2b-7b00-40a5-8baf-a7141f9efe84"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 07:41:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "bf9c9d06-393e-415d-af14-248aef4e3d9f"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf9c9d06-393e-415d-af14-248aef4e3d9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220322T074124Z:bf9c9d06-393e-415d-af14-248aef4e3d9f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 07:41:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "02780b3f-76fd-4779-8bca-496fef21ab45"
+ ],
+ "x-ms-correlation-request-id": [
+ "02780b3f-76fd-4779-8bca-496fef21ab45"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220322T074139Z:02780b3f-76fd-4779-8bca-496fef21ab45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 07:41:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1MTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU1UZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "2e20c273-8fea-403c-a3a0-c2a394025250"
],
"x-ms-correlation-request-id": [
- "20f8edf4-4473-46cb-ab88-815614eddd36"
+ "2e20c273-8fea-403c-a3a0-c2a394025250"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T154533Z:20f8edf4-4473-46cb-ab88-815614eddd36"
+ "WESTCENTRALUS:20220322T074139Z:2e20c273-8fea-403c-a3a0-c2a394025250"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4640,7 +4811,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 15:45:33 GMT"
+ "Tue, 22 Mar 2022 07:41:38 GMT"
],
"Expires": [
"-1"
@@ -4655,8 +4826,8 @@
],
"Names": {
"Test-ApiManagementHostnamesCRUD": [
- "ps38",
- "ps8371"
+ "ps8518",
+ "ps6860"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json
index 57dd481b094e..b257fbf8c637 100644
--- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json
+++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagement.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "048ae644-ebeb-403d-bfa3-eef0f4f2eca2"
+ "39549a22-329b-4276-a084-5590eca762f5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -27,16 +27,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-request-id": [
- "c6157bf1-8e73-4457-81a2-699ba6fd082c"
+ "4fef4937-7d0f-4b72-b56d-4fdc60008728"
],
"x-ms-correlation-request-id": [
- "c6157bf1-8e73-4457-81a2-699ba6fd082c"
+ "4fef4937-7d0f-4b72-b56d-4fdc60008728"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075345Z:c6157bf1-8e73-4457-81a2-699ba6fd082c"
+ "WESTCENTRALUS:20220322T084329Z:4fef4937-7d0f-4b72-b56d-4fdc60008728"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:53:45 GMT"
+ "Tue, 22 Mar 2022 08:43:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,29 +54,29 @@
"-1"
],
"Content-Length": [
- "8036"
+ "8664"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\",\r\n \"Jio India Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"deletedServices\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\",\r\n \"Jio India Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServices\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\",\r\n \"Jio India Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\",\r\n \"Jio India Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDomainOwnershipIdentifier\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\",\r\n \"Jio India Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/eventGridFilters\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\",\r\n \"Jio India Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"deletedServices\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServices\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01-preview\",\r\n \"2019-12-01-preview\",\r\n \"2019-12-01\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDomainOwnershipIdentifier\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\",\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/eventGridFilters\",\r\n \"locations\": [\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-04-01-preview\",\r\n \"2021-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8137?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODEzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps9455?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTQ1NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d83dac7-05cc-42d3-9894-740773d2a8b0"
+ "b6b9f768-a264-47ae-943a-e70db8019a2b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "53f6fb7f-f4ba-4e55-bc70-c12ff05f0f3f"
+ "5ffe94c2-c27c-4b24-a645-0b6ae31610cf"
],
"x-ms-correlation-request-id": [
- "53f6fb7f-f4ba-4e55-bc70-c12ff05f0f3f"
+ "5ffe94c2-c27c-4b24-a645-0b6ae31610cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075346Z:53f6fb7f-f4ba-4e55-bc70-c12ff05f0f3f"
+ "WESTCENTRALUS:20220322T084331Z:5ffe94c2-c27c-4b24-a645-0b6ae31610cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:53:46 GMT"
+ "Tue, 22 Mar 2022 08:43:30 GMT"
],
"Content-Length": [
"168"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137\",\r\n \"name\": \"ps8137\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455\",\r\n \"name\": \"ps9455\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,10 +159,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAY+Y8=\""
+ "\"AAAAAAAofsw=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -171,8 +171,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4ccc5a12-cfeb-48c0-9f5a-b99c9afbaf39",
- "6bb17daf-a433-41e0-9a96-2ca43a296f69"
+ "1b6fc322-46d7-418e-a62d-1c91b5d6ae36",
+ "1b6fc322-46d7-418e-a62d-1c91b5d6ae36"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -181,19 +181,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "da20bc7d-8205-4843-ae49-b2566f524379"
+ "1b6fc322-46d7-418e-a62d-1c91b5d6ae36"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075350Z:da20bc7d-8205-4843-ae49-b2566f524379"
+ "WESTCENTRALUS:20220322T084335Z:1b6fc322-46d7-418e-a62d-1c91b5d6ae36"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:53:49 GMT"
+ "Tue, 22 Mar 2022 08:43:35 GMT"
],
"Content-Length": [
- "1401"
+ "1857"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -202,23 +202,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286\",\r\n \"name\": \"ps8286\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+Y8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2021-07-15T07:53:48.2976481Z\",\r\n \"gatewayUrl\": \"https://ps8286.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8286.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883\",\r\n \"name\": \"ps2883\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAofsw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2022-03-22T08:43:34.064822Z\",\r\n \"gatewayUrl\": \"https://ps2883.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2883.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T08:43:33.9166428Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:43:33.9166428Z\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -229,7 +229,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -238,7 +238,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "39f8111d-881a-446e-9d2c-299466124be3"
+ "59c675fc-e8d2-474d-a6ac-cc31aa693051"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -247,16 +247,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "fb1d23be-7bda-4416-88a5-4cb7e677ef08"
+ "59c675fc-e8d2-474d-a6ac-cc31aa693051"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075450Z:fb1d23be-7bda-4416-88a5-4cb7e677ef08"
+ "WESTCENTRALUS:20220322T084436Z:59c675fc-e8d2-474d-a6ac-cc31aa693051"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:54:49 GMT"
+ "Tue, 22 Mar 2022 08:44:36 GMT"
],
"Expires": [
"-1"
@@ -269,19 +269,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -292,7 +292,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -301,7 +301,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "181ad446-c177-4561-9230-b6a663e2ec41"
+ "12be6b81-e779-42e5-a9bf-5ef43a3f589a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -310,16 +310,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "93930d4d-c36c-4d9d-be07-1d4e763c947c"
+ "12be6b81-e779-42e5-a9bf-5ef43a3f589a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075550Z:93930d4d-c36c-4d9d-be07-1d4e763c947c"
+ "WESTCENTRALUS:20220322T084536Z:12be6b81-e779-42e5-a9bf-5ef43a3f589a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:55:50 GMT"
+ "Tue, 22 Mar 2022 08:45:36 GMT"
],
"Expires": [
"-1"
@@ -332,19 +332,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -355,7 +355,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -364,7 +364,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1eb8b97b-5a5f-418e-8f82-8f4cf54d85fc"
+ "10df86ff-ca9b-465d-969a-dc4276fdc863"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -373,16 +373,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "7e7875d8-cdba-48d4-8e3b-247c978c5cfd"
+ "10df86ff-ca9b-465d-969a-dc4276fdc863"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075651Z:7e7875d8-cdba-48d4-8e3b-247c978c5cfd"
+ "WESTCENTRALUS:20220322T084636Z:10df86ff-ca9b-465d-969a-dc4276fdc863"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:56:50 GMT"
+ "Tue, 22 Mar 2022 08:46:36 GMT"
],
"Expires": [
"-1"
@@ -395,19 +395,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -418,7 +418,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -427,7 +427,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "11e9c1c6-3df5-4857-9186-a19441666e18"
+ "776150d4-ceaa-4f61-aa56-95f8c68165dd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -436,16 +436,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "21e8feda-44af-497e-8f10-8acd3767932a"
+ "776150d4-ceaa-4f61-aa56-95f8c68165dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075751Z:21e8feda-44af-497e-8f10-8acd3767932a"
+ "WESTCENTRALUS:20220322T084736Z:776150d4-ceaa-4f61-aa56-95f8c68165dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:57:51 GMT"
+ "Tue, 22 Mar 2022 08:47:36 GMT"
],
"Expires": [
"-1"
@@ -458,19 +458,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -481,7 +481,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -490,7 +490,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "db4b5d1d-c2df-4609-8f94-1b6632273a36"
+ "9d502ac9-8847-4d89-859c-223eea9cb3f1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -499,16 +499,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "f78ce50a-adce-4729-8b15-e7dbc0fc64b6"
+ "9d502ac9-8847-4d89-859c-223eea9cb3f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075851Z:f78ce50a-adce-4729-8b15-e7dbc0fc64b6"
+ "WESTCENTRALUS:20220322T084836Z:9d502ac9-8847-4d89-859c-223eea9cb3f1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:58:50 GMT"
+ "Tue, 22 Mar 2022 08:48:36 GMT"
],
"Expires": [
"-1"
@@ -521,19 +521,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -544,7 +544,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -553,7 +553,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "17e6353b-4ad8-40c2-a29d-1b2c8a7eea18"
+ "b5505bd1-6937-4b01-9ea8-0dde9101df93"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -562,16 +562,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "9724e193-dee7-401f-9b17-ea24a2d69fca"
+ "b5505bd1-6937-4b01-9ea8-0dde9101df93"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T075951Z:9724e193-dee7-401f-9b17-ea24a2d69fca"
+ "WESTCENTRALUS:20220322T084937Z:b5505bd1-6937-4b01-9ea8-0dde9101df93"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 07:59:51 GMT"
+ "Tue, 22 Mar 2022 08:49:36 GMT"
],
"Expires": [
"-1"
@@ -584,19 +584,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -607,7 +607,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -616,7 +616,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7cb19f5-90c0-4188-9d32-d9e2a189202f"
+ "34bb3230-233b-4a60-a3cb-243ee850d23a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -625,16 +625,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "50bd0973-3098-4e93-8820-70abfb8f48eb"
+ "34bb3230-233b-4a60-a3cb-243ee850d23a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080052Z:50bd0973-3098-4e93-8820-70abfb8f48eb"
+ "WESTCENTRALUS:20220322T085037Z:34bb3230-233b-4a60-a3cb-243ee850d23a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:00:51 GMT"
+ "Tue, 22 Mar 2022 08:50:37 GMT"
],
"Expires": [
"-1"
@@ -647,19 +647,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -670,7 +670,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -679,7 +679,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "53744f3c-621d-4d11-863e-0010e76db78e"
+ "fb0e1cdc-1e20-4a86-ac63-f354e55bc981"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -688,16 +688,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "69132f88-495f-4243-8959-e34b4a94a5e6"
+ "fb0e1cdc-1e20-4a86-ac63-f354e55bc981"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080152Z:69132f88-495f-4243-8959-e34b4a94a5e6"
+ "WESTCENTRALUS:20220322T085137Z:fb0e1cdc-1e20-4a86-ac63-f354e55bc981"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:01:52 GMT"
+ "Tue, 22 Mar 2022 08:51:37 GMT"
],
"Expires": [
"-1"
@@ -710,19 +710,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -733,7 +733,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -742,7 +742,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "41365239-f127-42c0-96df-7e860a049276"
+ "d1fb338c-431a-409d-a69e-689128010d6d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -751,16 +751,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "143a97a7-a9cb-4b17-b91a-a95e6d6d764a"
+ "d1fb338c-431a-409d-a69e-689128010d6d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080252Z:143a97a7-a9cb-4b17-b91a-a95e6d6d764a"
+ "WESTCENTRALUS:20220322T085237Z:d1fb338c-431a-409d-a69e-689128010d6d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:02:52 GMT"
+ "Tue, 22 Mar 2022 08:52:37 GMT"
],
"Expires": [
"-1"
@@ -773,19 +773,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -796,7 +796,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -805,7 +805,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5cdd06bb-e280-4385-84cc-f087403a851b"
+ "101dff1f-a016-4c24-876d-893944a2a71d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -814,16 +814,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "315f3f5b-b8f4-411b-bafe-f826e06466a1"
+ "101dff1f-a016-4c24-876d-893944a2a71d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080352Z:315f3f5b-b8f4-411b-bafe-f826e06466a1"
+ "WESTCENTRALUS:20220322T085338Z:101dff1f-a016-4c24-876d-893944a2a71d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:03:51 GMT"
+ "Tue, 22 Mar 2022 08:53:37 GMT"
],
"Expires": [
"-1"
@@ -836,19 +836,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -859,7 +859,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -868,7 +868,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c3fdcea6-d1d3-455f-b716-3097825fc535"
+ "61ed779e-f61d-48bb-a3d3-991e08c9a2a3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -877,16 +877,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "ca982382-790c-495a-ab53-50352328271d"
+ "61ed779e-f61d-48bb-a3d3-991e08c9a2a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080453Z:ca982382-790c-495a-ab53-50352328271d"
+ "WESTCENTRALUS:20220322T085438Z:61ed779e-f61d-48bb-a3d3-991e08c9a2a3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:04:52 GMT"
+ "Tue, 22 Mar 2022 08:54:37 GMT"
],
"Expires": [
"-1"
@@ -899,19 +899,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -922,7 +922,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -931,7 +931,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "61c77b66-7cc4-4d4e-bffa-04b5616568af"
+ "18c84394-5e79-424c-85b0-efb83d9628c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -940,16 +940,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "20bf0fe8-5432-4c1b-bee0-955a9c46a370"
+ "18c84394-5e79-424c-85b0-efb83d9628c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080553Z:20bf0fe8-5432-4c1b-bee0-955a9c46a370"
+ "WESTCENTRALUS:20220322T085538Z:18c84394-5e79-424c-85b0-efb83d9628c0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:05:53 GMT"
+ "Tue, 22 Mar 2022 08:55:38 GMT"
],
"Expires": [
"-1"
@@ -962,19 +962,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -985,7 +985,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -994,7 +994,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cd5bed76-6b83-474c-bb56-bac0d31d5022"
+ "cf2ac6d5-23dd-4aec-8538-bb698166f6c2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1003,16 +1003,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "1dc4f260-5d9d-411f-aefc-26cb09355b42"
+ "cf2ac6d5-23dd-4aec-8538-bb698166f6c2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080653Z:1dc4f260-5d9d-411f-aefc-26cb09355b42"
+ "WESTCENTRALUS:20220322T085638Z:cf2ac6d5-23dd-4aec-8538-bb698166f6c2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:06:53 GMT"
+ "Tue, 22 Mar 2022 08:56:37 GMT"
],
"Expires": [
"-1"
@@ -1025,19 +1025,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1048,7 +1048,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1057,7 +1057,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "890e8013-42f1-48a0-84f0-ec074117963f"
+ "118559a7-2c60-45c7-bc47-a1be841f9747"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1066,16 +1066,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "64801b79-2d14-46a5-b786-21b64574e36c"
+ "118559a7-2c60-45c7-bc47-a1be841f9747"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080753Z:64801b79-2d14-46a5-b786-21b64574e36c"
+ "WESTCENTRALUS:20220322T085739Z:118559a7-2c60-45c7-bc47-a1be841f9747"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:07:52 GMT"
+ "Tue, 22 Mar 2022 08:57:38 GMT"
],
"Expires": [
"-1"
@@ -1088,19 +1088,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1111,7 +1111,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1120,7 +1120,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f0c59df7-eb13-4823-a879-b12ff7bf8fe5"
+ "d2f2bd81-d54f-41b1-91ee-c8dacdb5cf22"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1129,16 +1129,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "cb2b4b69-b9c1-435b-8a0f-cc66565fe5bb"
+ "d2f2bd81-d54f-41b1-91ee-c8dacdb5cf22"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080854Z:cb2b4b69-b9c1-435b-8a0f-cc66565fe5bb"
+ "WESTCENTRALUS:20220322T085839Z:d2f2bd81-d54f-41b1-91ee-c8dacdb5cf22"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:08:53 GMT"
+ "Tue, 22 Mar 2022 08:58:38 GMT"
],
"Expires": [
"-1"
@@ -1151,19 +1151,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1174,7 +1174,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1183,7 +1183,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "65d6089b-00e5-4c13-8878-48b93010b8e2"
+ "c623a1e6-0660-4b16-91b6-36af20359ccd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1192,16 +1192,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "8f388f87-1e8b-4451-a2c8-12b8ac3f8042"
+ "c623a1e6-0660-4b16-91b6-36af20359ccd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T080954Z:8f388f87-1e8b-4451-a2c8-12b8ac3f8042"
+ "WESTCENTRALUS:20220322T085939Z:c623a1e6-0660-4b16-91b6-36af20359ccd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:09:53 GMT"
+ "Tue, 22 Mar 2022 08:59:39 GMT"
],
"Expires": [
"-1"
@@ -1214,19 +1214,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1237,7 +1237,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1246,7 +1246,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ac53a7a6-9fd1-41fe-b945-b7fc70e24ce7"
+ "b8d27880-fdeb-4abb-acff-081da09fa884"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1255,16 +1255,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "deafa484-aa4f-4acb-86ab-083501bdc196"
+ "b8d27880-fdeb-4abb-acff-081da09fa884"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081054Z:deafa484-aa4f-4acb-86ab-083501bdc196"
+ "WESTCENTRALUS:20220322T090039Z:b8d27880-fdeb-4abb-acff-081da09fa884"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:10:54 GMT"
+ "Tue, 22 Mar 2022 09:00:39 GMT"
],
"Expires": [
"-1"
@@ -1277,19 +1277,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1300,7 +1300,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1309,7 +1309,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "da74ac2f-4c2e-475d-921a-51b022ee5fbf"
+ "4e2cebfc-ca0b-40a3-b869-2f3bbc05389d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1318,16 +1318,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "2d8c3065-fb29-4283-afdc-1703fdf3f4ff"
+ "4e2cebfc-ca0b-40a3-b869-2f3bbc05389d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081155Z:2d8c3065-fb29-4283-afdc-1703fdf3f4ff"
+ "WESTCENTRALUS:20220322T090140Z:4e2cebfc-ca0b-40a3-b869-2f3bbc05389d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:11:54 GMT"
+ "Tue, 22 Mar 2022 09:01:39 GMT"
],
"Expires": [
"-1"
@@ -1340,19 +1340,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1363,7 +1363,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1372,7 +1372,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f354c9b-a0a8-44be-af35-c1b0e7501975"
+ "1ae55176-779e-41f0-bc6d-5ce08d422b26"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1381,16 +1381,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "b4bfff98-92ad-4877-85b6-5c6050bbc84d"
+ "1ae55176-779e-41f0-bc6d-5ce08d422b26"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081255Z:b4bfff98-92ad-4877-85b6-5c6050bbc84d"
+ "WESTCENTRALUS:20220322T090240Z:1ae55176-779e-41f0-bc6d-5ce08d422b26"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:12:55 GMT"
+ "Tue, 22 Mar 2022 09:02:40 GMT"
],
"Expires": [
"-1"
@@ -1403,19 +1403,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1426,7 +1426,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1435,7 +1435,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2441ab21-ccf2-4ae0-a839-5ec4175a0976"
+ "02751b2f-f51b-4ad2-8fbb-6a8add1b5a8b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1444,16 +1444,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "ec65049a-9d62-42a2-b868-bb8cd4c9fc55"
+ "02751b2f-f51b-4ad2-8fbb-6a8add1b5a8b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081355Z:ec65049a-9d62-42a2-b868-bb8cd4c9fc55"
+ "WESTCENTRALUS:20220322T090340Z:02751b2f-f51b-4ad2-8fbb-6a8add1b5a8b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:13:54 GMT"
+ "Tue, 22 Mar 2022 09:03:39 GMT"
],
"Expires": [
"-1"
@@ -1466,19 +1466,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1489,7 +1489,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1498,7 +1498,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6b57a89f-e018-4111-be6e-86c9fe3b40af"
+ "ce39862d-b63a-4d0b-b988-0827908b7039"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1507,16 +1507,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "bfc5d15f-4e1d-477b-b9c8-a7d8988e4d30"
+ "ce39862d-b63a-4d0b-b988-0827908b7039"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081455Z:bfc5d15f-4e1d-477b-b9c8-a7d8988e4d30"
+ "WESTCENTRALUS:20220322T090440Z:ce39862d-b63a-4d0b-b988-0827908b7039"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:14:55 GMT"
+ "Tue, 22 Mar 2022 09:04:40 GMT"
],
"Expires": [
"-1"
@@ -1529,19 +1529,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1552,7 +1552,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1561,7 +1561,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "89cb232b-e3b3-4755-be7e-b6f3cb8e5905"
+ "81ffd261-2705-442b-a5eb-2b5d75f3247a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1570,16 +1570,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "677ee2ff-c10c-455a-b109-1dbf8410babd"
+ "81ffd261-2705-442b-a5eb-2b5d75f3247a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081556Z:677ee2ff-c10c-455a-b109-1dbf8410babd"
+ "WESTCENTRALUS:20220322T090540Z:81ffd261-2705-442b-a5eb-2b5d75f3247a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:15:55 GMT"
+ "Tue, 22 Mar 2022 09:05:40 GMT"
],
"Expires": [
"-1"
@@ -1592,19 +1592,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1615,7 +1615,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1624,7 +1624,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "757d298b-5990-4365-8baf-77bd79f2ba0a"
+ "f367de58-f84f-4a71-b655-1eb091d7e546"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1633,16 +1633,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "7e0b97c0-e3c9-4870-8690-0d03f013d260"
+ "f367de58-f84f-4a71-b655-1eb091d7e546"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081656Z:7e0b97c0-e3c9-4870-8690-0d03f013d260"
+ "WESTCENTRALUS:20220322T090641Z:f367de58-f84f-4a71-b655-1eb091d7e546"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:16:56 GMT"
+ "Tue, 22 Mar 2022 09:06:41 GMT"
],
"Expires": [
"-1"
@@ -1655,19 +1655,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1678,7 +1678,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1687,7 +1687,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "261308b9-8f7b-4cfd-8d6c-790a5ae53f13"
+ "753d6958-5846-4f53-9a40-e245fac0d339"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1696,16 +1696,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "9bf42d3a-adc4-4472-a8dd-34528ff3a1e1"
+ "753d6958-5846-4f53-9a40-e245fac0d339"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081756Z:9bf42d3a-adc4-4472-a8dd-34528ff3a1e1"
+ "WESTCENTRALUS:20220322T090741Z:753d6958-5846-4f53-9a40-e245fac0d339"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:17:55 GMT"
+ "Tue, 22 Mar 2022 09:07:40 GMT"
],
"Expires": [
"-1"
@@ -1718,19 +1718,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1741,7 +1741,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1750,7 +1750,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1dee446f-a844-4e0e-9b7b-745cff18dd6e"
+ "64e0b35b-8adc-43e5-9d10-b303cfa65d9e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1759,16 +1759,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "1e490413-1cdf-45c0-850e-ca1c808dc19b"
+ "64e0b35b-8adc-43e5-9d10-b303cfa65d9e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081856Z:1e490413-1cdf-45c0-850e-ca1c808dc19b"
+ "WESTCENTRALUS:20220322T090841Z:64e0b35b-8adc-43e5-9d10-b303cfa65d9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:18:56 GMT"
+ "Tue, 22 Mar 2022 09:08:41 GMT"
],
"Expires": [
"-1"
@@ -1781,19 +1781,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1804,7 +1804,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1813,7 +1813,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9316756-2281-4586-a801-40cabfbd4b0d"
+ "0d628cb4-359a-4665-9b65-d0da1168a052"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1822,16 +1822,16 @@
"11974"
],
"x-ms-correlation-request-id": [
- "755d1d45-beaf-4669-b458-69aafe17dde8"
+ "0d628cb4-359a-4665-9b65-d0da1168a052"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T081957Z:755d1d45-beaf-4669-b458-69aafe17dde8"
+ "WESTCENTRALUS:20220322T090941Z:0d628cb4-359a-4665-9b65-d0da1168a052"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:19:56 GMT"
+ "Tue, 22 Mar 2022 09:09:41 GMT"
],
"Expires": [
"-1"
@@ -1844,19 +1844,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1867,7 +1867,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1876,7 +1876,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9f97f701-ac2e-4738-a629-d2ea82de466c"
+ "d42d4430-014c-4287-a05c-d93ab8d575e6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1885,16 +1885,16 @@
"11973"
],
"x-ms-correlation-request-id": [
- "97ebef44-6ef7-401c-b3c0-eb16c3f3984e"
+ "d42d4430-014c-4287-a05c-d93ab8d575e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082057Z:97ebef44-6ef7-401c-b3c0-eb16c3f3984e"
+ "WESTCENTRALUS:20220322T091042Z:d42d4430-014c-4287-a05c-d93ab8d575e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:20:57 GMT"
+ "Tue, 22 Mar 2022 09:10:41 GMT"
],
"Expires": [
"-1"
@@ -1907,19 +1907,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1930,7 +1930,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1939,7 +1939,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1c1e6b94-201e-4b3d-b588-3023ac799946"
+ "e126ec42-741b-4268-a2db-b95f528db186"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1948,16 +1948,16 @@
"11972"
],
"x-ms-correlation-request-id": [
- "e6761bf7-2e2d-46fd-b7e9-1fd53f99cc56"
+ "e126ec42-741b-4268-a2db-b95f528db186"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082157Z:e6761bf7-2e2d-46fd-b7e9-1fd53f99cc56"
+ "WESTCENTRALUS:20220322T091142Z:e126ec42-741b-4268-a2db-b95f528db186"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:21:57 GMT"
+ "Tue, 22 Mar 2022 09:11:41 GMT"
],
"Expires": [
"-1"
@@ -1970,19 +1970,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1993,7 +1993,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2002,7 +2002,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dc57301b-fefd-4eed-8001-3e86545e5d9c"
+ "a868236d-4fad-4db3-bddb-6e3515496eff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2011,16 +2011,16 @@
"11971"
],
"x-ms-correlation-request-id": [
- "ac98524a-e3d9-4f9a-920d-f60782bb92c1"
+ "a868236d-4fad-4db3-bddb-6e3515496eff"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082258Z:ac98524a-e3d9-4f9a-920d-f60782bb92c1"
+ "WESTCENTRALUS:20220322T091242Z:a868236d-4fad-4db3-bddb-6e3515496eff"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:22:57 GMT"
+ "Tue, 22 Mar 2022 09:12:42 GMT"
],
"Expires": [
"-1"
@@ -2033,19 +2033,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2056,7 +2056,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2065,7 +2065,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "94da273f-2883-48e8-a8ad-a4da571ce5ba"
+ "837ac746-4295-41fa-b0dd-c8e5c67b8c93"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2074,16 +2074,16 @@
"11970"
],
"x-ms-correlation-request-id": [
- "e770257e-176b-4e81-98cc-41be3f8005a8"
+ "837ac746-4295-41fa-b0dd-c8e5c67b8c93"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082358Z:e770257e-176b-4e81-98cc-41be3f8005a8"
+ "WESTCENTRALUS:20220322T091342Z:837ac746-4295-41fa-b0dd-c8e5c67b8c93"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:23:57 GMT"
+ "Tue, 22 Mar 2022 09:13:42 GMT"
],
"Expires": [
"-1"
@@ -2096,19 +2096,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2119,7 +2119,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2128,7 +2128,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "909bfcd7-469b-40a0-a649-00226c46133e"
+ "e919b468-55e2-4eeb-9365-1d1783d35b27"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2137,16 +2137,16 @@
"11969"
],
"x-ms-correlation-request-id": [
- "9ad0adc7-2ec5-4137-8d6b-02e3e6874913"
+ "e919b468-55e2-4eeb-9365-1d1783d35b27"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082458Z:9ad0adc7-2ec5-4137-8d6b-02e3e6874913"
+ "WESTCENTRALUS:20220322T091443Z:e919b468-55e2-4eeb-9365-1d1783d35b27"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:24:58 GMT"
+ "Tue, 22 Mar 2022 09:14:42 GMT"
],
"Expires": [
"-1"
@@ -2159,19 +2159,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2182,7 +2182,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2191,7 +2191,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a3c3db9b-262d-4877-8680-f60b12134afe"
+ "21c53f32-3567-41cb-8755-d469e128668d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2200,16 +2200,16 @@
"11968"
],
"x-ms-correlation-request-id": [
- "953d9b5c-a894-41d7-8fea-116dde049cd6"
+ "21c53f32-3567-41cb-8755-d469e128668d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082558Z:953d9b5c-a894-41d7-8fea-116dde049cd6"
+ "WESTCENTRALUS:20220322T091543Z:21c53f32-3567-41cb-8755-d469e128668d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:25:58 GMT"
+ "Tue, 22 Mar 2022 09:15:42 GMT"
],
"Expires": [
"-1"
@@ -2222,19 +2222,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2245,7 +2245,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2254,7 +2254,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6fc1de95-4240-41e6-a9d0-caa53c3bc933"
+ "30a27919-bb3a-47ea-a140-fa285ec97b71"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2263,16 +2263,16 @@
"11967"
],
"x-ms-correlation-request-id": [
- "1ea1a1e4-7742-4811-91c9-06b092329fda"
+ "30a27919-bb3a-47ea-a140-fa285ec97b71"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082659Z:1ea1a1e4-7742-4811-91c9-06b092329fda"
+ "WESTCENTRALUS:20220322T091643Z:30a27919-bb3a-47ea-a140-fa285ec97b71"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:26:59 GMT"
+ "Tue, 22 Mar 2022 09:16:42 GMT"
],
"Expires": [
"-1"
@@ -2285,19 +2285,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2308,7 +2308,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2317,7 +2317,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8ed8e3c7-15fd-4e8a-8458-4c3ac87f9d9f"
+ "be8bdf8d-2224-44e0-a043-0276adfa12f6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2326,16 +2326,16 @@
"11966"
],
"x-ms-correlation-request-id": [
- "f58c4958-f06f-47a1-aed2-33900af10dfb"
+ "be8bdf8d-2224-44e0-a043-0276adfa12f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082759Z:f58c4958-f06f-47a1-aed2-33900af10dfb"
+ "WESTCENTRALUS:20220322T091743Z:be8bdf8d-2224-44e0-a043-0276adfa12f6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:27:58 GMT"
+ "Tue, 22 Mar 2022 09:17:42 GMT"
],
"Expires": [
"-1"
@@ -2348,19 +2348,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2371,7 +2371,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2380,7 +2380,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "46b0cd2e-7cdb-4d3d-b1a0-b5fc55fa859d"
+ "29256ab3-617e-423b-8a55-eb0c6a8521fb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2389,16 +2389,16 @@
"11965"
],
"x-ms-correlation-request-id": [
- "b323c8b2-6df9-4d0b-9945-2ef1c81e9c79"
+ "29256ab3-617e-423b-8a55-eb0c6a8521fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082859Z:b323c8b2-6df9-4d0b-9945-2ef1c81e9c79"
+ "WESTCENTRALUS:20220322T091843Z:29256ab3-617e-423b-8a55-eb0c6a8521fb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:28:58 GMT"
+ "Tue, 22 Mar 2022 09:18:42 GMT"
],
"Expires": [
"-1"
@@ -2411,19 +2411,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2434,7 +2434,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2443,7 +2443,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "10521dff-c83a-4a80-9359-a0ef78602986"
+ "b329d131-9ac1-41e2-ab07-7270cc3b400c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2452,16 +2452,16 @@
"11964"
],
"x-ms-correlation-request-id": [
- "bcf4cdef-f099-4e3d-8d54-ade176f83001"
+ "b329d131-9ac1-41e2-ab07-7270cc3b400c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T082959Z:bcf4cdef-f099-4e3d-8d54-ade176f83001"
+ "WESTCENTRALUS:20220322T091944Z:b329d131-9ac1-41e2-ab07-7270cc3b400c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:29:59 GMT"
+ "Tue, 22 Mar 2022 09:19:43 GMT"
],
"Expires": [
"-1"
@@ -2474,19 +2474,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2497,7 +2497,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2506,7 +2506,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d27c7304-b31d-4dc4-a81a-499c1e17bbd7"
+ "c18ac99a-494a-4c77-b7ae-c44bfb469fdb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2515,16 +2515,16 @@
"11963"
],
"x-ms-correlation-request-id": [
- "917daac2-f6f1-472e-98bd-e44150cbdac9"
+ "c18ac99a-494a-4c77-b7ae-c44bfb469fdb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083100Z:917daac2-f6f1-472e-98bd-e44150cbdac9"
+ "WESTCENTRALUS:20220322T092044Z:c18ac99a-494a-4c77-b7ae-c44bfb469fdb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:30:59 GMT"
+ "Tue, 22 Mar 2022 09:20:44 GMT"
],
"Expires": [
"-1"
@@ -2537,19 +2537,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2560,7 +2560,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2569,7 +2569,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "265c4708-d7e6-49a4-98c4-7dc71b788429"
+ "e78feec4-babb-41f8-ad82-3d485e8e1a5e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2578,16 +2578,16 @@
"11962"
],
"x-ms-correlation-request-id": [
- "beadcfd4-75ed-401a-ae65-b1343ee4d04c"
+ "e78feec4-babb-41f8-ad82-3d485e8e1a5e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083200Z:beadcfd4-75ed-401a-ae65-b1343ee4d04c"
+ "WESTCENTRALUS:20220322T092144Z:e78feec4-babb-41f8-ad82-3d485e8e1a5e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:32:00 GMT"
+ "Tue, 22 Mar 2022 09:21:43 GMT"
],
"Expires": [
"-1"
@@ -2600,19 +2600,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2623,7 +2623,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2632,7 +2632,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dfebc54a-8758-444c-a840-4ebcf9ee20ef"
+ "81318420-2886-4f0a-8599-12224abb8d26"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2641,16 +2641,16 @@
"11961"
],
"x-ms-correlation-request-id": [
- "426afb4e-aa9e-4424-afd0-e54f2739dbb1"
+ "81318420-2886-4f0a-8599-12224abb8d26"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083300Z:426afb4e-aa9e-4424-afd0-e54f2739dbb1"
+ "WESTCENTRALUS:20220322T092244Z:81318420-2886-4f0a-8599-12224abb8d26"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:32:59 GMT"
+ "Tue, 22 Mar 2022 09:22:44 GMT"
],
"Expires": [
"-1"
@@ -2663,19 +2663,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2686,7 +2686,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2695,7 +2695,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86a537d2-db6d-4a2a-8592-e3096557aca4"
+ "1f170275-4424-41b1-98ab-3ba79f016951"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2704,16 +2704,16 @@
"11960"
],
"x-ms-correlation-request-id": [
- "0fb87459-cc73-4f95-8cc0-34f6be5ad782"
+ "1f170275-4424-41b1-98ab-3ba79f016951"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083401Z:0fb87459-cc73-4f95-8cc0-34f6be5ad782"
+ "WESTCENTRALUS:20220322T092345Z:1f170275-4424-41b1-98ab-3ba79f016951"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:34:00 GMT"
+ "Tue, 22 Mar 2022 09:23:45 GMT"
],
"Expires": [
"-1"
@@ -2726,19 +2726,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2749,7 +2749,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2758,7 +2758,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f5ae404-5ce2-4d81-8afe-edf9203d7ef8"
+ "b1d49a29-f750-4307-9674-4a96aad3e065"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2767,16 +2767,16 @@
"11959"
],
"x-ms-correlation-request-id": [
- "0f6dd0dd-5952-4902-84f2-0d3f69a5a017"
+ "b1d49a29-f750-4307-9674-4a96aad3e065"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083501Z:0f6dd0dd-5952-4902-84f2-0d3f69a5a017"
+ "WESTCENTRALUS:20220322T092445Z:b1d49a29-f750-4307-9674-4a96aad3e065"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:35:00 GMT"
+ "Tue, 22 Mar 2022 09:24:44 GMT"
],
"Expires": [
"-1"
@@ -2789,19 +2789,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2812,7 +2812,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2821,7 +2821,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b5c18882-eeff-4da0-a9a9-4a4a6afb65f2"
+ "5a482f68-07e2-4870-a32a-78ae8280e9b6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2830,16 +2830,16 @@
"11958"
],
"x-ms-correlation-request-id": [
- "a67b6d54-8e90-4e29-b909-35bb432c61e1"
+ "5a482f68-07e2-4870-a32a-78ae8280e9b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083601Z:a67b6d54-8e90-4e29-b909-35bb432c61e1"
+ "WESTCENTRALUS:20220322T092545Z:5a482f68-07e2-4870-a32a-78ae8280e9b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:36:01 GMT"
+ "Tue, 22 Mar 2022 09:25:45 GMT"
],
"Expires": [
"-1"
@@ -2852,19 +2852,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2875,7 +2875,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2884,7 +2884,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cd55aa2e-f6e2-46f3-9d53-f084cefa8c7f"
+ "f3437096-f9a5-4a51-a167-3675a154b01c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2893,16 +2893,16 @@
"11957"
],
"x-ms-correlation-request-id": [
- "98047878-47c8-40a3-8047-6edd022eb74a"
+ "f3437096-f9a5-4a51-a167-3675a154b01c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083701Z:98047878-47c8-40a3-8047-6edd022eb74a"
+ "WESTCENTRALUS:20220322T092645Z:f3437096-f9a5-4a51-a167-3675a154b01c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:37:01 GMT"
+ "Tue, 22 Mar 2022 09:26:45 GMT"
],
"Expires": [
"-1"
@@ -2915,19 +2915,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2938,7 +2938,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2947,7 +2947,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cce5f1a1-65b2-4657-81a6-12f776dc4319"
+ "1acb617a-8a38-46e5-b970-032c1505aad6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2956,16 +2956,16 @@
"11956"
],
"x-ms-correlation-request-id": [
- "f8535fb9-2aea-4631-81d9-98ed8abacb1c"
+ "1acb617a-8a38-46e5-b970-032c1505aad6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083802Z:f8535fb9-2aea-4631-81d9-98ed8abacb1c"
+ "WESTCENTRALUS:20220322T092745Z:1acb617a-8a38-46e5-b970-032c1505aad6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:38:02 GMT"
+ "Tue, 22 Mar 2022 09:27:45 GMT"
],
"Expires": [
"-1"
@@ -2978,19 +2978,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3001,7 +3001,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3010,7 +3010,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "995c683e-ca05-4405-9c96-af51faa0b864"
+ "1b1d67e2-45be-4641-bee1-9abc2cb2a4fc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3019,16 +3019,16 @@
"11955"
],
"x-ms-correlation-request-id": [
- "15f65c7a-e427-4d63-98a7-c8818d95df12"
+ "1b1d67e2-45be-4641-bee1-9abc2cb2a4fc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T083902Z:15f65c7a-e427-4d63-98a7-c8818d95df12"
+ "WESTCENTRALUS:20220322T092846Z:1b1d67e2-45be-4641-bee1-9abc2cb2a4fc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:39:01 GMT"
+ "Tue, 22 Mar 2022 09:28:45 GMT"
],
"Expires": [
"-1"
@@ -3041,19 +3041,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3064,7 +3064,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3073,7 +3073,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "79eaf542-7d3d-497f-8308-0abc099997ce"
+ "6a28a47e-2e56-4f88-83ab-0d918f21e4ac"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3082,16 +3082,16 @@
"11954"
],
"x-ms-correlation-request-id": [
- "a8900955-2301-4db7-b68b-1e4817079aec"
+ "6a28a47e-2e56-4f88-83ab-0d918f21e4ac"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084002Z:a8900955-2301-4db7-b68b-1e4817079aec"
+ "WESTCENTRALUS:20220322T092946Z:6a28a47e-2e56-4f88-83ab-0d918f21e4ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:40:02 GMT"
+ "Tue, 22 Mar 2022 09:29:45 GMT"
],
"Expires": [
"-1"
@@ -3104,19 +3104,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3127,7 +3127,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3136,7 +3136,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b3bd0455-2865-4c71-a741-64edf2c8a315"
+ "e5709ed3-a096-4c07-a6ba-29c12d61ee03"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3145,16 +3145,16 @@
"11953"
],
"x-ms-correlation-request-id": [
- "43260c4b-6911-4783-a280-0c2fc6880859"
+ "e5709ed3-a096-4c07-a6ba-29c12d61ee03"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084103Z:43260c4b-6911-4783-a280-0c2fc6880859"
+ "WESTCENTRALUS:20220322T093046Z:e5709ed3-a096-4c07-a6ba-29c12d61ee03"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:41:02 GMT"
+ "Tue, 22 Mar 2022 09:30:45 GMT"
],
"Expires": [
"-1"
@@ -3167,19 +3167,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3190,7 +3190,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3199,7 +3199,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3169b455-49dc-4fdb-bdad-140813dca7c8"
+ "538579ce-5b4b-4a0f-b581-dc55faecb5a3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3208,16 +3208,16 @@
"11952"
],
"x-ms-correlation-request-id": [
- "1beaacfa-417c-4bb8-a2b8-769b940ea03c"
+ "538579ce-5b4b-4a0f-b581-dc55faecb5a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084203Z:1beaacfa-417c-4bb8-a2b8-769b940ea03c"
+ "WESTCENTRALUS:20220322T093146Z:538579ce-5b4b-4a0f-b581-dc55faecb5a3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:42:03 GMT"
+ "Tue, 22 Mar 2022 09:31:46 GMT"
],
"Expires": [
"-1"
@@ -3230,19 +3230,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3253,7 +3253,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3262,7 +3262,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d592dfac-6290-4a1e-be05-fb0625ce8cf3"
+ "a6572dc2-1773-4810-ae87-b33ff401382b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3271,16 +3271,16 @@
"11951"
],
"x-ms-correlation-request-id": [
- "0052fbdb-e02e-4bca-80f5-15c310b7766d"
+ "a6572dc2-1773-4810-ae87-b33ff401382b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084303Z:0052fbdb-e02e-4bca-80f5-15c310b7766d"
+ "WESTCENTRALUS:20220322T093247Z:a6572dc2-1773-4810-ae87-b33ff401382b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:43:02 GMT"
+ "Tue, 22 Mar 2022 09:32:47 GMT"
],
"Expires": [
"-1"
@@ -3293,19 +3293,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3316,7 +3316,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3325,7 +3325,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5ac6cede-4421-4787-9857-ac7fe549888a"
+ "bc4d483b-c494-451b-8aab-c2c25e87c4cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3334,16 +3334,16 @@
"11950"
],
"x-ms-correlation-request-id": [
- "42bfb489-a23e-461c-8a30-6f308ec48267"
+ "bc4d483b-c494-451b-8aab-c2c25e87c4cb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084404Z:42bfb489-a23e-461c-8a30-6f308ec48267"
+ "WESTCENTRALUS:20220322T093347Z:bc4d483b-c494-451b-8aab-c2c25e87c4cb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:44:03 GMT"
+ "Tue, 22 Mar 2022 09:33:46 GMT"
],
"Expires": [
"-1"
@@ -3356,19 +3356,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3379,7 +3379,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3388,7 +3388,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b9c30eac-13c7-4f8a-a230-a0c90eae77cc"
+ "ab82633c-5253-42af-b5a4-261fbe772095"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3397,16 +3397,16 @@
"11949"
],
"x-ms-correlation-request-id": [
- "e3b48c20-9e9e-4b90-8707-63cb83ecc0d7"
+ "ab82633c-5253-42af-b5a4-261fbe772095"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084504Z:e3b48c20-9e9e-4b90-8707-63cb83ecc0d7"
+ "WESTCENTRALUS:20220322T093447Z:ab82633c-5253-42af-b5a4-261fbe772095"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:45:03 GMT"
+ "Tue, 22 Mar 2022 09:34:47 GMT"
],
"Expires": [
"-1"
@@ -3419,19 +3419,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3442,7 +3442,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3451,7 +3451,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "115db234-1ab0-42d1-b980-13de495d3bc0"
+ "9b31e4b3-1e59-48de-b54e-952d78faf35a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3460,16 +3460,16 @@
"11948"
],
"x-ms-correlation-request-id": [
- "e4103b5a-a308-4d5b-bb1d-a0ea795f297f"
+ "9b31e4b3-1e59-48de-b54e-952d78faf35a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084604Z:e4103b5a-a308-4d5b-bb1d-a0ea795f297f"
+ "WESTCENTRALUS:20220322T093547Z:9b31e4b3-1e59-48de-b54e-952d78faf35a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:46:04 GMT"
+ "Tue, 22 Mar 2022 09:35:46 GMT"
],
"Expires": [
"-1"
@@ -3482,19 +3482,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3505,7 +3505,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3514,7 +3514,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8b1f182f-45d1-4d24-a724-b8aa139d5206"
+ "8490c563-b56d-400d-acc7-c04c906e7aab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3523,16 +3523,16 @@
"11947"
],
"x-ms-correlation-request-id": [
- "8d89cee8-db61-4e5a-bba2-4c4b2dd79606"
+ "8490c563-b56d-400d-acc7-c04c906e7aab"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084704Z:8d89cee8-db61-4e5a-bba2-4c4b2dd79606"
+ "WESTCENTRALUS:20220322T093648Z:8490c563-b56d-400d-acc7-c04c906e7aab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:47:04 GMT"
+ "Tue, 22 Mar 2022 09:36:48 GMT"
],
"Expires": [
"-1"
@@ -3545,19 +3545,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3568,7 +3568,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3577,7 +3577,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "442f0adf-8460-437f-baa4-890614a973a7"
+ "b03fcec7-5568-42ad-8619-f12f700a78e6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3586,16 +3586,16 @@
"11946"
],
"x-ms-correlation-request-id": [
- "27e14f8f-2e6b-4178-a3b1-356d6704de50"
+ "b03fcec7-5568-42ad-8619-f12f700a78e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084805Z:27e14f8f-2e6b-4178-a3b1-356d6704de50"
+ "WESTCENTRALUS:20220322T093748Z:b03fcec7-5568-42ad-8619-f12f700a78e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:48:04 GMT"
+ "Tue, 22 Mar 2022 09:37:48 GMT"
],
"Expires": [
"-1"
@@ -3608,19 +3608,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3631,7 +3631,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3640,7 +3640,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "568375a6-7d92-455e-a7be-cbb06a1dd048"
+ "a80598c2-7435-4691-ac2f-371b158093de"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3649,16 +3649,16 @@
"11945"
],
"x-ms-correlation-request-id": [
- "7b09bec9-2c31-4d51-aedd-b7f60cdc46a7"
+ "a80598c2-7435-4691-ac2f-371b158093de"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T084905Z:7b09bec9-2c31-4d51-aedd-b7f60cdc46a7"
+ "WESTCENTRALUS:20220322T093848Z:a80598c2-7435-4691-ac2f-371b158093de"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:49:04 GMT"
+ "Tue, 22 Mar 2022 09:38:47 GMT"
],
"Expires": [
"-1"
@@ -3671,19 +3671,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3694,7 +3694,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3703,7 +3703,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5c4b34fb-9212-47fb-98a0-66d4517c1b99"
+ "b9b56520-4343-480d-bd3c-836f2f4ed2ef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3712,16 +3712,16 @@
"11944"
],
"x-ms-correlation-request-id": [
- "ea54fda9-ec8d-40af-b522-7038fc4b3e87"
+ "b9b56520-4343-480d-bd3c-836f2f4ed2ef"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T085005Z:ea54fda9-ec8d-40af-b522-7038fc4b3e87"
+ "WESTCENTRALUS:20220322T093948Z:b9b56520-4343-480d-bd3c-836f2f4ed2ef"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:50:05 GMT"
+ "Tue, 22 Mar 2022 09:39:48 GMT"
],
"Expires": [
"-1"
@@ -3734,19 +3734,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3757,7 +3757,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3766,7 +3766,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "816ef692-1b9b-4476-aed0-b3937046282c"
+ "96d45c43-a47d-4c21-9973-4cad28b3745f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3775,16 +3775,16 @@
"11943"
],
"x-ms-correlation-request-id": [
- "e1bf38a3-3fd2-4f8a-9853-fdc823858995"
+ "96d45c43-a47d-4c21-9973-4cad28b3745f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T085105Z:e1bf38a3-3fd2-4f8a-9853-fdc823858995"
+ "WESTCENTRALUS:20220322T094048Z:96d45c43-a47d-4c21-9973-4cad28b3745f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:51:05 GMT"
+ "Tue, 22 Mar 2022 09:40:48 GMT"
],
"Expires": [
"-1"
@@ -3797,19 +3797,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3820,7 +3820,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3829,7 +3829,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e87781fe-4371-44cc-99d9-616fb78948c5"
+ "efe33f8c-505b-454c-a209-cd70e0fee0e4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3838,16 +3838,16 @@
"11942"
],
"x-ms-correlation-request-id": [
- "8225f4f4-748d-4702-b291-f0728181d5c0"
+ "efe33f8c-505b-454c-a209-cd70e0fee0e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T085206Z:8225f4f4-748d-4702-b291-f0728181d5c0"
+ "WESTCENTRALUS:20220322T094149Z:efe33f8c-505b-454c-a209-cd70e0fee0e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:52:05 GMT"
+ "Tue, 22 Mar 2022 09:41:48 GMT"
],
"Expires": [
"-1"
@@ -3860,19 +3860,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3883,7 +3883,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3892,7 +3892,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7eaf4be-ff49-4cbb-a946-b956ba7ba116"
+ "3a38e2cc-4412-4294-ba8a-3e570108fcb8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3901,16 +3901,16 @@
"11941"
],
"x-ms-correlation-request-id": [
- "0d1565a9-4f14-4f73-a49b-50e84b6e84ec"
+ "3a38e2cc-4412-4294-ba8a-3e570108fcb8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T085306Z:0d1565a9-4f14-4f73-a49b-50e84b6e84ec"
+ "WESTCENTRALUS:20220322T094249Z:3a38e2cc-4412-4294-ba8a-3e570108fcb8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:53:06 GMT"
+ "Tue, 22 Mar 2022 09:42:48 GMT"
],
"Expires": [
"-1"
@@ -3923,19 +3923,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3946,7 +3946,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3955,7 +3955,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "913bb84a-6053-479d-bbe0-af76387a14ca"
+ "14eec403-76f7-4687-bec4-a8db29865c2f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3964,16 +3964,16 @@
"11940"
],
"x-ms-correlation-request-id": [
- "290005c6-3f14-45ca-96ce-56061cbf7f16"
+ "14eec403-76f7-4687-bec4-a8db29865c2f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T085406Z:290005c6-3f14-45ca-96ce-56061cbf7f16"
+ "WESTCENTRALUS:20220322T094349Z:14eec403-76f7-4687-bec4-a8db29865c2f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:54:06 GMT"
+ "Tue, 22 Mar 2022 09:43:49 GMT"
],
"Expires": [
"-1"
@@ -3986,19 +3986,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19BY3RfMjJmMzZlNmE=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOUJZM1JmTWpKbU16WmxObUU9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
+ "b796787a-828c-480c-b7c9-867881807303"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -4008,80 +4008,11 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a8df3687-a1ef-4b03-9fcf-d5fbc23c7c96"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
- ],
- "x-ms-correlation-request-id": [
- "ffe555d2-a296-4ff5-b46b-2e484c7007fe"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T085507Z:ffe555d2-a296-4ff5-b46b-2e484c7007fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 08:55:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "4a9bedd9-4e2d-471a-8304-3c001a527b5b"
+ "eb2b42ec-82d1-408a-a244-3156e81b099c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -4090,265 +4021,19 @@
"11939"
],
"x-ms-correlation-request-id": [
- "0fa45564-1923-498c-9e76-9bde6aa13754"
+ "eb2b42ec-82d1-408a-a244-3156e81b099c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T085607Z:0fa45564-1923-498c-9e76-9bde6aa13754"
+ "WESTCENTRALUS:20220322T094449Z:eb2b42ec-82d1-408a-a244-3156e81b099c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 08:56:06 GMT"
- ],
- "Expires": [
- "-1"
+ "Tue, 22 Mar 2022 09:44:49 GMT"
],
"Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "afa88337-777d-4a65-bfdc-e8a639a3765b"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
- ],
- "x-ms-correlation-request-id": [
- "728e7b9c-97b0-4a75-991a-8b1375ec6c7f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T085707Z:728e7b9c-97b0-4a75-991a-8b1375ec6c7f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 08:57:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "58aefe0f-dc5a-4858-abc3-a4620d2243cc"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
- ],
- "x-ms-correlation-request-id": [
- "dd322761-31f2-43df-81dd-fe7dcb1a8e57"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T085807Z:dd322761-31f2-43df-81dd-fe7dcb1a8e57"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 08:58:07 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "e367117e-e59d-44a2-bfe3-1059930e9ac6"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
- ],
- "x-ms-correlation-request-id": [
- "98af097d-5548-46f7-b79d-06c82c0896fe"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T085908Z:98af097d-5548-46f7-b79d-06c82c0896fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 08:59:08 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9BY3RfZmI2ZjZmYmY=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOUJZM1JmWm1JMlpqWm1ZbVk9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bff7ec19-1669-4531-804e-c80bad512e86"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "efe47771-8522-4a83-8b18-3583726de736"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
- ],
- "x-ms-correlation-request-id": [
- "744858b2-9308-42ef-a472-c5e8dbe5ed21"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T090008Z:744858b2-9308-42ef-a472-c5e8dbe5ed21"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 09:00:07 GMT"
- ],
- "Content-Length": [
- "2092"
+ "2540"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4357,26 +4042,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286\",\r\n \"name\": \"ps8286\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+fs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T07:53:48.2976481Z\",\r\n \"gatewayUrl\": \"https://ps8286.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8286-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8286.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8286.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8286.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8286.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8286.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.182.227.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883\",\r\n \"name\": \"ps2883\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof0Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T08:43:34.064822Z\",\r\n \"gatewayUrl\": \"https://ps2883.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2883-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2883.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2883.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2883.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2883.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2883.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.244.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T08:43:33.9166428Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:43:33.9166428Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/getssotoken?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/getssotoken?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ea55ad2-9626-40f8-b5b5-9975f43c89da"
+ "6dbfa093-7016-4c27-aad1-739fbd38eae1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -4390,7 +4075,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e4469212-6328-4b89-a159-cb72b9e298b1"
+ "caa81cd4-0393-4f01-a8b0-d7dd2c474198"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -4399,19 +4084,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "56ec3048-cb17-4266-ad9f-5a818a942186"
+ "caa81cd4-0393-4f01-a8b0-d7dd2c474198"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090008Z:56ec3048-cb17-4266-ad9f-5a818a942186"
+ "WESTCENTRALUS:20220322T094450Z:caa81cd4-0393-4f01-a8b0-d7dd2c474198"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:00:07 GMT"
+ "Tue, 22 Mar 2022 09:44:50 GMT"
],
"Content-Length": [
- "196"
+ "188"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4420,26 +4105,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"redirectUri\": \"https://ps8286.portal.azure-api.net:443/signin-sso?token=1%26202107150905%26%2foLL8TI9gWiVdMJw0ROOaXAxKKIYxjVSmH%2bCifaQhS8ca4ORUaLo5%2blrm%2fPJD%2bnEprRqeJSlCJXaD8hSxnAkjA%3d%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"redirectUri\": \"https://ps2883.portal.azure-api.net:443/signin-sso?token=1%26202203220949%26d6rn2WLHE1cTwrhOxZV5z9H4ufDvID6ovd5ESsJMS5hl8irGEIjzl3lhexhSsbj%2f0QD57NAwCAk61OJ7bBsoYQ%3d%3d\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a56b172a-53ba-4a9e-8048-ba55515f1a4e"
+ "99d207ae-6a9e-4d13-a2a7-458f853fe6a9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -4453,28 +4138,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b2c1842a-2995-4357-a3f6-96fca2b1f1b9"
+ "304fc903-7ac8-4267-91f6-fe91aaa05df8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-correlation-request-id": [
- "42fad38e-2bc8-4201-b8ea-c7e18a0deeb1"
+ "304fc903-7ac8-4267-91f6-fe91aaa05df8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090008Z:42fad38e-2bc8-4201-b8ea-c7e18a0deeb1"
+ "WESTCENTRALUS:20220322T094450Z:304fc903-7ac8-4267-91f6-fe91aaa05df8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:00:08 GMT"
+ "Tue, 22 Mar 2022 09:44:50 GMT"
],
"Content-Length": [
- "2104"
+ "2552"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4483,26 +4168,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286\",\r\n \"name\": \"ps8286\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+fs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T07:53:48.2976481Z\",\r\n \"gatewayUrl\": \"https://ps8286.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8286-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8286.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8286.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8286.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8286.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8286.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.182.227.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883\",\r\n \"name\": \"ps2883\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof0Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T08:43:34.064822Z\",\r\n \"gatewayUrl\": \"https://ps2883.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2883-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2883.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2883.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2883.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2883.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2883.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.244.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T08:43:33.9166428Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:43:33.9166428Z\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -4513,20 +4198,20 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "2b2d889b-63b3-4070-a089-3e841b9ed639",
- "8eaf8aef-4642-4823-9349-582861ae5762"
+ "b07aff81-e17e-4f98-bfe5-f73360ba1df6",
+ "b07aff81-e17e-4f98-bfe5-f73360ba1df6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11932"
],
"x-ms-request-id": [
- "ea0c4f7a-2cde-4d21-a706-c9d4b48a32a0"
+ "b07aff81-e17e-4f98-bfe5-f73360ba1df6"
],
"x-ms-correlation-request-id": [
- "ea0c4f7a-2cde-4d21-a706-c9d4b48a32a0"
+ "b07aff81-e17e-4f98-bfe5-f73360ba1df6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100239Z:ea0c4f7a-2cde-4d21-a706-c9d4b48a32a0"
+ "WESTCENTRALUS:20220322T104417Z:b07aff81-e17e-4f98-bfe5-f73360ba1df6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4535,7 +4220,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:02:38 GMT"
+ "Tue, 22 Mar 2022 10:44:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4544,29 +4229,29 @@
"-1"
],
"Content-Length": [
- "5954"
+ "7303"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154\",\r\n \"name\": \"ps4154\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+oA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T09:00:10.585047Z\",\r\n \"gatewayUrl\": \"https://ps4154.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4154-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4154.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4154.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4154.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4154.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4154.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.84.168.115\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286\",\r\n \"name\": \"ps8286\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+fs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T07:53:48.2976481Z\",\r\n \"gatewayUrl\": \"https://ps8286.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8286-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8286.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8286.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8286.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8286.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8286.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.182.227.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784\",\r\n \"name\": \"ps784\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABjBto=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T10:01:34.4579155Z\",\r\n \"gatewayUrl\": \"https://ps784.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps784.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883\",\r\n \"name\": \"ps2883\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof0Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T08:43:34.064822Z\",\r\n \"gatewayUrl\": \"https://ps2883.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2883-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2883.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2883.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2883.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2883.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2883.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.244.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T08:43:33.9166428Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:43:33.9166428Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976\",\r\n \"name\": \"ps4976\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof9E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T09:44:52.8608536Z\",\r\n \"gatewayUrl\": \"https://ps4976.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4976-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4976.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4976.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4976.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4976.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4976.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.21.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T09:44:52.826263Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T09:44:52.826263Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889\",\r\n \"name\": \"ps4889\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACWXnQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T10:42:11.0081683Z\",\r\n \"gatewayUrl\": \"https://ps4889.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4889.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T10:42:10.9125281Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T10:42:10.9125281Z\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18a092c1-6529-4788-8421-e2c3f50411be"
+ "713263a0-25ba-4d72-b3b7-52dd03265ad2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -4580,25 +4265,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "439c8e1e-41df-4537-8f25-43b60abef3fd"
+ "7f6a7158-f854-4eb5-ba8b-ae00b16381e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11929"
],
"x-ms-correlation-request-id": [
- "db61d49c-bd32-49e2-ab31-ec4175d7faa4"
+ "7f6a7158-f854-4eb5-ba8b-ae00b16381e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100743Z:db61d49c-bd32-49e2-ab31-ec4175d7faa4"
+ "WESTCENTRALUS:20220322T104921Z:7f6a7158-f854-4eb5-ba8b-ae00b16381e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:07:43 GMT"
+ "Tue, 22 Mar 2022 10:49:20 GMT"
],
"Content-Length": [
"12"
@@ -4614,287 +4299,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzY/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "253"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "\"AAAAAAAY+f4=\""
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "9fdbd38d-23ff-4a50-853e-86541b562665",
- "920599b3-61e0-4066-9b8d-cf17690fa096"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "47366a65-a015-4c77-a3b6-c9ac7d5a4cce"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T090012Z:47366a65-a015-4c77-a3b6-c9ac7d5a4cce"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 09:00:12 GMT"
- ],
- "Content-Length": [
- "1250"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154\",\r\n \"name\": \"ps4154\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+f4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2021-07-15T09:00:10.585047Z\",\r\n \"gatewayUrl\": \"https://ps4154.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4154.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "875a9574-e0ae-4f92-9037-936b796c8503"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
- ],
- "x-ms-correlation-request-id": [
- "0b37971f-4353-4894-95d0-1ad3af87f8f3"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T090113Z:0b37971f-4353-4894-95d0-1ad3af87f8f3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 09:01:12 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "71990fdb-582a-4f9f-af12-452698e1ab42"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
- ],
- "x-ms-correlation-request-id": [
- "ebf6bd05-aaa4-4511-a407-fdbce17c9e89"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T090213Z:ebf6bd05-aaa4-4511-a407-fdbce17c9e89"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 09:02:13 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "97681dbf-ad60-43a1-b593-6b2692749699"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
- ],
- "x-ms-correlation-request-id": [
- "d0d4cfc8-2ea9-4751-b74e-db57f812cb23"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T090313Z:d0d4cfc8-2ea9-4751-b74e-db57f812cb23"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 09:03:13 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
- ],
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ ],
+ "Content-Length": [
+ "253"
]
},
"ResponseHeaders": {
@@ -4904,8 +4330,11 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAof0c=\""
+ ],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -4914,50 +4343,54 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "76cfb311-69a8-4ad9-be8c-2682a676ab4d"
+ "f1dc63ab-3646-4573-86f4-110975ddef48",
+ "f1dc63ab-3646-4573-86f4-110975ddef48"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "357f597b-449f-432a-9159-9420d02940d6"
+ "f1dc63ab-3646-4573-86f4-110975ddef48"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090414Z:357f597b-449f-432a-9159-9420d02940d6"
+ "WESTCENTRALUS:20220322T094454Z:f1dc63ab-3646-4573-86f4-110975ddef48"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:04:13 GMT"
+ "Tue, 22 Mar 2022 09:44:53 GMT"
+ ],
+ "Content-Length": [
+ "1706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976\",\r\n \"name\": \"ps4976\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof0c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2022-03-22T09:44:52.8608536Z\",\r\n \"gatewayUrl\": \"https://ps4976.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4976.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T09:44:52.826263Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T09:44:52.826263Z\"\r\n }\r\n}",
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -4968,7 +4401,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -4977,25 +4410,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "53636d74-347d-45e0-b990-309b113dbf3e"
+ "5b8e5dd5-c93e-42d3-bfe5-aff31b99f212"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-correlation-request-id": [
- "406e573f-af53-4d0e-a607-de2aa51d8ff9"
+ "5b8e5dd5-c93e-42d3-bfe5-aff31b99f212"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090514Z:406e573f-af53-4d0e-a607-de2aa51d8ff9"
+ "WESTCENTRALUS:20220322T094554Z:5b8e5dd5-c93e-42d3-bfe5-aff31b99f212"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:05:14 GMT"
+ "Tue, 22 Mar 2022 09:45:53 GMT"
],
"Expires": [
"-1"
@@ -5008,19 +4441,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5031,7 +4464,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5040,25 +4473,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "51b2e30d-90bb-4486-9c38-e26bae66bf52"
+ "38c72964-7bc0-425a-a97f-b850b9410afe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11937"
],
"x-ms-correlation-request-id": [
- "17eb1e70-9a22-4293-b801-064e31022592"
+ "38c72964-7bc0-425a-a97f-b850b9410afe"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090614Z:17eb1e70-9a22-4293-b801-064e31022592"
+ "WESTCENTRALUS:20220322T094654Z:38c72964-7bc0-425a-a97f-b850b9410afe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:06:14 GMT"
+ "Tue, 22 Mar 2022 09:46:54 GMT"
],
"Expires": [
"-1"
@@ -5071,19 +4504,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5094,7 +4527,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5103,25 +4536,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5c4e7b66-4e2a-4067-952c-d5a80493ebeb"
+ "0d923a1a-b73e-4d3c-9e7f-0bc5c9a63a11"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11936"
],
"x-ms-correlation-request-id": [
- "5db38d0e-dc89-41d4-b294-56f363f42b66"
+ "0d923a1a-b73e-4d3c-9e7f-0bc5c9a63a11"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090715Z:5db38d0e-dc89-41d4-b294-56f363f42b66"
+ "WESTCENTRALUS:20220322T094754Z:0d923a1a-b73e-4d3c-9e7f-0bc5c9a63a11"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:07:14 GMT"
+ "Tue, 22 Mar 2022 09:47:54 GMT"
],
"Expires": [
"-1"
@@ -5134,19 +4567,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5157,7 +4590,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5166,25 +4599,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "543a8ad5-57a8-4043-953f-5f3e871e83d6"
+ "ce7f8670-cc40-4b0b-940e-b8ba78feed1f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11935"
],
"x-ms-correlation-request-id": [
- "3f0657b6-a626-4797-a717-b2a75251b940"
+ "ce7f8670-cc40-4b0b-940e-b8ba78feed1f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090815Z:3f0657b6-a626-4797-a717-b2a75251b940"
+ "WESTCENTRALUS:20220322T094855Z:ce7f8670-cc40-4b0b-940e-b8ba78feed1f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:08:14 GMT"
+ "Tue, 22 Mar 2022 09:48:54 GMT"
],
"Expires": [
"-1"
@@ -5197,19 +4630,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5220,7 +4653,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5229,25 +4662,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "55f832fe-888e-49cd-af3d-fe37d43bf2cf"
+ "e792fe04-dba0-46e7-9fb0-6baa6d8c3574"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11934"
],
"x-ms-correlation-request-id": [
- "f378bd8f-a4d2-4216-9499-155a1d5f1b46"
+ "e792fe04-dba0-46e7-9fb0-6baa6d8c3574"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T090915Z:f378bd8f-a4d2-4216-9499-155a1d5f1b46"
+ "WESTCENTRALUS:20220322T094955Z:e792fe04-dba0-46e7-9fb0-6baa6d8c3574"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:09:15 GMT"
+ "Tue, 22 Mar 2022 09:49:54 GMT"
],
"Expires": [
"-1"
@@ -5260,19 +4693,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5283,7 +4716,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5292,25 +4725,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1416d78d-6fdf-4c19-a8dd-bf848f39866c"
+ "1954eeef-9eb7-43c9-8b45-5d6b64e115a0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-correlation-request-id": [
- "0de296db-704b-425d-a400-ecdf61eff051"
+ "1954eeef-9eb7-43c9-8b45-5d6b64e115a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091015Z:0de296db-704b-425d-a400-ecdf61eff051"
+ "WESTCENTRALUS:20220322T095055Z:1954eeef-9eb7-43c9-8b45-5d6b64e115a0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:10:15 GMT"
+ "Tue, 22 Mar 2022 09:50:54 GMT"
],
"Expires": [
"-1"
@@ -5323,19 +4756,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5346,7 +4779,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5355,25 +4788,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "934ac539-e14e-4ef0-ace9-80396c1e5aef"
+ "172bd5dc-6307-4318-bab7-42a255222420"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11937"
],
"x-ms-correlation-request-id": [
- "ff50b825-1e7b-4c76-833f-ba9a66558ea7"
+ "172bd5dc-6307-4318-bab7-42a255222420"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091116Z:ff50b825-1e7b-4c76-833f-ba9a66558ea7"
+ "WESTCENTRALUS:20220322T095155Z:172bd5dc-6307-4318-bab7-42a255222420"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:11:15 GMT"
+ "Tue, 22 Mar 2022 09:51:55 GMT"
],
"Expires": [
"-1"
@@ -5386,19 +4819,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5409,7 +4842,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5418,25 +4851,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ad58629b-f351-4ae9-bb9b-f8e16710baf7"
+ "42dea0c3-b76e-4cf0-80d1-53e827b4804c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11936"
],
"x-ms-correlation-request-id": [
- "5dc8ebc5-4cc2-4880-9d3b-b9354bd7b71e"
+ "42dea0c3-b76e-4cf0-80d1-53e827b4804c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091216Z:5dc8ebc5-4cc2-4880-9d3b-b9354bd7b71e"
+ "WESTCENTRALUS:20220322T095255Z:42dea0c3-b76e-4cf0-80d1-53e827b4804c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:12:15 GMT"
+ "Tue, 22 Mar 2022 09:52:55 GMT"
],
"Expires": [
"-1"
@@ -5449,19 +4882,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5472,7 +4905,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5481,25 +4914,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d04b451f-f111-46c8-a383-2c432b6ae9fc"
+ "5cfd08a9-ff18-408c-ab61-4685760849db"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11935"
],
"x-ms-correlation-request-id": [
- "1020f406-8899-4110-8763-6b09c6db9547"
+ "5cfd08a9-ff18-408c-ab61-4685760849db"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091316Z:1020f406-8899-4110-8763-6b09c6db9547"
+ "WESTCENTRALUS:20220322T095356Z:5cfd08a9-ff18-408c-ab61-4685760849db"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:13:16 GMT"
+ "Tue, 22 Mar 2022 09:53:55 GMT"
],
"Expires": [
"-1"
@@ -5512,19 +4945,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5535,7 +4968,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5544,25 +4977,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6ddf0843-6707-4e1d-b83e-c57dfb666d2f"
+ "0e3b6646-0b65-4cd3-9933-6bb3d4cccd89"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11934"
],
"x-ms-correlation-request-id": [
- "0941cee8-bda7-4ac3-a742-2802cb585099"
+ "0e3b6646-0b65-4cd3-9933-6bb3d4cccd89"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091417Z:0941cee8-bda7-4ac3-a742-2802cb585099"
+ "WESTCENTRALUS:20220322T095456Z:0e3b6646-0b65-4cd3-9933-6bb3d4cccd89"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:14:16 GMT"
+ "Tue, 22 Mar 2022 09:54:56 GMT"
],
"Expires": [
"-1"
@@ -5575,19 +5008,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5598,7 +5031,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5607,25 +5040,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "77567bea-bea3-4470-9df3-55c909a45f43"
+ "480701ce-da32-4280-ba5d-c567e64e42df"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-correlation-request-id": [
- "12c1dbac-a1d9-4e88-a6b9-2a0b751a71a3"
+ "480701ce-da32-4280-ba5d-c567e64e42df"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091517Z:12c1dbac-a1d9-4e88-a6b9-2a0b751a71a3"
+ "WESTCENTRALUS:20220322T095556Z:480701ce-da32-4280-ba5d-c567e64e42df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:15:16 GMT"
+ "Tue, 22 Mar 2022 09:55:56 GMT"
],
"Expires": [
"-1"
@@ -5638,19 +5071,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5661,7 +5094,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5670,25 +5103,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "434bb1d1-3180-4331-8898-d8461fbe3019"
+ "44ad4a60-20b4-4533-95d8-6ff2c776f859"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11937"
],
"x-ms-correlation-request-id": [
- "6cb6f261-eb2f-470a-82c2-6d776099999f"
+ "44ad4a60-20b4-4533-95d8-6ff2c776f859"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091617Z:6cb6f261-eb2f-470a-82c2-6d776099999f"
+ "WESTCENTRALUS:20220322T095657Z:44ad4a60-20b4-4533-95d8-6ff2c776f859"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:16:17 GMT"
+ "Tue, 22 Mar 2022 09:56:56 GMT"
],
"Expires": [
"-1"
@@ -5701,19 +5134,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5724,7 +5157,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5733,25 +5166,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8d9af19f-e128-4bb3-be77-51c0a3aa8f7e"
+ "35c0b590-64a6-4477-98b8-c9663634292a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11936"
],
"x-ms-correlation-request-id": [
- "c9c1b868-223e-4e3a-990b-4d9b185dcb49"
+ "35c0b590-64a6-4477-98b8-c9663634292a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091718Z:c9c1b868-223e-4e3a-990b-4d9b185dcb49"
+ "WESTCENTRALUS:20220322T095757Z:35c0b590-64a6-4477-98b8-c9663634292a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:17:17 GMT"
+ "Tue, 22 Mar 2022 09:57:56 GMT"
],
"Expires": [
"-1"
@@ -5764,19 +5197,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5787,7 +5220,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5796,25 +5229,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eba3e4a8-db88-4c16-a311-6d3831428910"
+ "06cd5d60-7f69-45a4-ad8a-b47ecd000703"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11935"
],
"x-ms-correlation-request-id": [
- "fb3bbe82-ef3d-43e3-9a0a-0d922c10fc2c"
+ "06cd5d60-7f69-45a4-ad8a-b47ecd000703"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091818Z:fb3bbe82-ef3d-43e3-9a0a-0d922c10fc2c"
+ "WESTCENTRALUS:20220322T095857Z:06cd5d60-7f69-45a4-ad8a-b47ecd000703"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:18:18 GMT"
+ "Tue, 22 Mar 2022 09:58:56 GMT"
],
"Expires": [
"-1"
@@ -5827,19 +5260,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5850,7 +5283,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5859,25 +5292,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ad7da771-8d4d-49c3-8575-f6c500016e0b"
+ "48288767-3106-4c2e-bc37-71583a41734c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11934"
],
"x-ms-correlation-request-id": [
- "3c963cb7-afdc-42e7-a341-48028503b115"
+ "48288767-3106-4c2e-bc37-71583a41734c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T091918Z:3c963cb7-afdc-42e7-a341-48028503b115"
+ "WESTCENTRALUS:20220322T095957Z:48288767-3106-4c2e-bc37-71583a41734c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:19:18 GMT"
+ "Tue, 22 Mar 2022 09:59:57 GMT"
],
"Expires": [
"-1"
@@ -5890,19 +5323,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5913,7 +5346,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5922,25 +5355,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2febaf70-b827-40e2-80da-26f46ff82c03"
+ "821a6784-314e-4bc3-ae0d-c78021063ba5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-correlation-request-id": [
- "30cfd616-627e-44aa-8c78-760a119e6b2a"
+ "821a6784-314e-4bc3-ae0d-c78021063ba5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092019Z:30cfd616-627e-44aa-8c78-760a119e6b2a"
+ "WESTCENTRALUS:20220322T100058Z:821a6784-314e-4bc3-ae0d-c78021063ba5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:20:18 GMT"
+ "Tue, 22 Mar 2022 10:00:57 GMT"
],
"Expires": [
"-1"
@@ -5953,19 +5386,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -5976,7 +5409,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -5985,25 +5418,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a12110f5-4b5f-4225-b4c4-7bf75ac39940"
+ "c0eafeeb-bc19-414c-bda9-ae8d4a7d1a9a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11937"
],
"x-ms-correlation-request-id": [
- "536a65dd-11c4-4fa7-b528-c17c7268f38c"
+ "c0eafeeb-bc19-414c-bda9-ae8d4a7d1a9a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092119Z:536a65dd-11c4-4fa7-b528-c17c7268f38c"
+ "WESTCENTRALUS:20220322T100158Z:c0eafeeb-bc19-414c-bda9-ae8d4a7d1a9a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:21:18 GMT"
+ "Tue, 22 Mar 2022 10:01:58 GMT"
],
"Expires": [
"-1"
@@ -6016,19 +5449,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6039,7 +5472,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6048,25 +5481,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1d84c4e5-373d-4a7e-8fc9-9656b5aa7458"
+ "12120d8b-efa8-45ea-a72d-2da344c0e415"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11936"
],
"x-ms-correlation-request-id": [
- "8c713fcb-a2a0-47ac-95d6-b7e5eedcd166"
+ "12120d8b-efa8-45ea-a72d-2da344c0e415"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092219Z:8c713fcb-a2a0-47ac-95d6-b7e5eedcd166"
+ "WESTCENTRALUS:20220322T100258Z:12120d8b-efa8-45ea-a72d-2da344c0e415"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:22:18 GMT"
+ "Tue, 22 Mar 2022 10:02:58 GMT"
],
"Expires": [
"-1"
@@ -6079,19 +5512,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6102,7 +5535,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6111,25 +5544,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "38c48e26-504a-47d9-8914-b189431bf74d"
+ "8a1ef614-9800-4314-aba0-a8814f0007f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11935"
],
"x-ms-correlation-request-id": [
- "fa1f97a2-b058-42b7-a25b-9c47ffa33397"
+ "8a1ef614-9800-4314-aba0-a8814f0007f7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092319Z:fa1f97a2-b058-42b7-a25b-9c47ffa33397"
+ "WESTCENTRALUS:20220322T100358Z:8a1ef614-9800-4314-aba0-a8814f0007f7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:23:19 GMT"
+ "Tue, 22 Mar 2022 10:03:58 GMT"
],
"Expires": [
"-1"
@@ -6142,19 +5575,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6165,7 +5598,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6174,25 +5607,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ad659a2-b25c-417c-9744-3c80596e32d0"
+ "30f7877a-c8bb-48b4-9fea-aa5889c59506"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11934"
],
"x-ms-correlation-request-id": [
- "050a73e9-c559-4432-bb4f-45108eb6d970"
+ "30f7877a-c8bb-48b4-9fea-aa5889c59506"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092420Z:050a73e9-c559-4432-bb4f-45108eb6d970"
+ "WESTCENTRALUS:20220322T100459Z:30f7877a-c8bb-48b4-9fea-aa5889c59506"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:24:19 GMT"
+ "Tue, 22 Mar 2022 10:04:58 GMT"
],
"Expires": [
"-1"
@@ -6205,19 +5638,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6228,7 +5661,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6237,25 +5670,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e211a40e-494c-49b3-b211-7941ed341935"
+ "1c791ca2-64df-4e32-b6e7-6bd1ae29fa02"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-correlation-request-id": [
- "0bb17abf-f4c2-42e9-a6b2-b56ac52020fd"
+ "1c791ca2-64df-4e32-b6e7-6bd1ae29fa02"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092520Z:0bb17abf-f4c2-42e9-a6b2-b56ac52020fd"
+ "WESTCENTRALUS:20220322T100559Z:1c791ca2-64df-4e32-b6e7-6bd1ae29fa02"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:25:20 GMT"
+ "Tue, 22 Mar 2022 10:05:58 GMT"
],
"Expires": [
"-1"
@@ -6268,19 +5701,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6291,7 +5724,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6300,25 +5733,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b561164f-eccc-4cac-ac44-3a0c234b0ee1"
+ "18c74d49-ed53-4f2b-a90a-7be26ce99831"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11937"
],
"x-ms-correlation-request-id": [
- "cccc1bf6-d12b-4500-ac66-6e335c0fd10b"
+ "18c74d49-ed53-4f2b-a90a-7be26ce99831"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092620Z:cccc1bf6-d12b-4500-ac66-6e335c0fd10b"
+ "WESTCENTRALUS:20220322T100659Z:18c74d49-ed53-4f2b-a90a-7be26ce99831"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:26:19 GMT"
+ "Tue, 22 Mar 2022 10:06:59 GMT"
],
"Expires": [
"-1"
@@ -6331,19 +5764,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6354,7 +5787,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6363,25 +5796,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "876f386e-7955-40f2-be35-f8e7653e1c4b"
+ "995a7684-fe4f-4494-b586-5425c9551103"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11936"
],
"x-ms-correlation-request-id": [
- "e3a42bc7-7d72-4163-ab95-3e9f12e93f14"
+ "995a7684-fe4f-4494-b586-5425c9551103"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092721Z:e3a42bc7-7d72-4163-ab95-3e9f12e93f14"
+ "WESTCENTRALUS:20220322T100759Z:995a7684-fe4f-4494-b586-5425c9551103"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:27:20 GMT"
+ "Tue, 22 Mar 2022 10:07:59 GMT"
],
"Expires": [
"-1"
@@ -6394,19 +5827,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6417,7 +5850,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6426,25 +5859,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "651550df-58c9-4c9e-8a36-e6fed98ca706"
+ "a1401afc-88b5-42b7-9d30-cb4a5dd11dd3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11935"
],
"x-ms-correlation-request-id": [
- "f658a779-e6d3-4bd8-8014-51a68cdc26ec"
+ "a1401afc-88b5-42b7-9d30-cb4a5dd11dd3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092821Z:f658a779-e6d3-4bd8-8014-51a68cdc26ec"
+ "WESTCENTRALUS:20220322T100900Z:a1401afc-88b5-42b7-9d30-cb4a5dd11dd3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:28:20 GMT"
+ "Tue, 22 Mar 2022 10:08:59 GMT"
],
"Expires": [
"-1"
@@ -6457,19 +5890,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6480,7 +5913,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6489,25 +5922,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "88fb0ecc-4bf9-4e6d-8148-3862a0ae6158"
+ "2a9ff8b2-a64b-419e-a9dc-cdd699376bba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11939"
],
"x-ms-correlation-request-id": [
- "9ed8af5a-bbc8-4a47-853b-4cbff8da8548"
+ "2a9ff8b2-a64b-419e-a9dc-cdd699376bba"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T092921Z:9ed8af5a-bbc8-4a47-853b-4cbff8da8548"
+ "WESTCENTRALUS:20220322T101000Z:2a9ff8b2-a64b-419e-a9dc-cdd699376bba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:29:21 GMT"
+ "Tue, 22 Mar 2022 10:09:59 GMT"
],
"Expires": [
"-1"
@@ -6520,19 +5953,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6543,7 +5976,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6552,25 +5985,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0c11d76f-921a-446e-9734-f9a012e15556"
+ "110c8a17-005b-4665-963f-fecf2b45edea"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-correlation-request-id": [
- "a396d595-af52-4a2a-96e3-a338929c092f"
+ "110c8a17-005b-4665-963f-fecf2b45edea"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093022Z:a396d595-af52-4a2a-96e3-a338929c092f"
+ "WESTCENTRALUS:20220322T101100Z:110c8a17-005b-4665-963f-fecf2b45edea"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:30:21 GMT"
+ "Tue, 22 Mar 2022 10:10:59 GMT"
],
"Expires": [
"-1"
@@ -6583,19 +6016,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6606,7 +6039,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6615,25 +6048,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8d7bd778-415f-4853-a4d3-1b0be9b0dcbc"
+ "75e5c9f0-7c29-40e1-8a79-9d69d41847dd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11937"
],
"x-ms-correlation-request-id": [
- "8f4454d4-0080-4026-babf-e1ffdbf609c2"
+ "75e5c9f0-7c29-40e1-8a79-9d69d41847dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093122Z:8f4454d4-0080-4026-babf-e1ffdbf609c2"
+ "WESTCENTRALUS:20220322T101200Z:75e5c9f0-7c29-40e1-8a79-9d69d41847dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:31:22 GMT"
+ "Tue, 22 Mar 2022 10:12:00 GMT"
],
"Expires": [
"-1"
@@ -6646,19 +6079,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6669,7 +6102,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6678,25 +6111,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a4f536da-d7e6-410d-a9d6-2f42809c6751"
+ "15a02cd8-b314-45c4-8c9d-95c6e4fc5b48"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11936"
],
"x-ms-correlation-request-id": [
- "d116bd1c-7b5a-4936-901e-27b030d8c591"
+ "15a02cd8-b314-45c4-8c9d-95c6e4fc5b48"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093222Z:d116bd1c-7b5a-4936-901e-27b030d8c591"
+ "WESTCENTRALUS:20220322T101301Z:15a02cd8-b314-45c4-8c9d-95c6e4fc5b48"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:32:21 GMT"
+ "Tue, 22 Mar 2022 10:13:01 GMT"
],
"Expires": [
"-1"
@@ -6709,19 +6142,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6732,7 +6165,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6741,25 +6174,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b7b0909f-1dba-46f4-9d54-3395cd5d5b39"
+ "50c75ecd-a0a5-4396-8b46-39e1cc08a640"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11935"
],
"x-ms-correlation-request-id": [
- "7ba2c9b9-95ad-4515-a6f1-c3ecaf525587"
+ "50c75ecd-a0a5-4396-8b46-39e1cc08a640"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093322Z:7ba2c9b9-95ad-4515-a6f1-c3ecaf525587"
+ "WESTCENTRALUS:20220322T101401Z:50c75ecd-a0a5-4396-8b46-39e1cc08a640"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:33:22 GMT"
+ "Tue, 22 Mar 2022 10:14:00 GMT"
],
"Expires": [
"-1"
@@ -6772,19 +6205,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6795,7 +6228,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6804,25 +6237,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "63add416-49f3-4adf-b94e-0ad8e9cd5c00"
+ "ef72d495-d4a5-44ab-ac68-7d59bc15100e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11939"
],
"x-ms-correlation-request-id": [
- "f6054251-7c56-4858-a851-dd65f16cfcea"
+ "ef72d495-d4a5-44ab-ac68-7d59bc15100e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093423Z:f6054251-7c56-4858-a851-dd65f16cfcea"
+ "WESTCENTRALUS:20220322T101501Z:ef72d495-d4a5-44ab-ac68-7d59bc15100e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:34:22 GMT"
+ "Tue, 22 Mar 2022 10:15:00 GMT"
],
"Expires": [
"-1"
@@ -6835,19 +6268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6858,7 +6291,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6867,7 +6300,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "022fda1b-ff50-4020-aab1-80c3282e8710"
+ "8c6a431f-1a00-4f05-b3d9-c0fb2a3ccbaa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -6876,16 +6309,16 @@
"11938"
],
"x-ms-correlation-request-id": [
- "63de2255-dc91-42e7-b750-bb5d8c705880"
+ "8c6a431f-1a00-4f05-b3d9-c0fb2a3ccbaa"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093523Z:63de2255-dc91-42e7-b750-bb5d8c705880"
+ "WESTCENTRALUS:20220322T101601Z:8c6a431f-1a00-4f05-b3d9-c0fb2a3ccbaa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:35:23 GMT"
+ "Tue, 22 Mar 2022 10:16:01 GMT"
],
"Expires": [
"-1"
@@ -6898,19 +6331,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6921,7 +6354,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6930,7 +6363,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3503a7b-4658-4a40-a943-e32e1d0612ea"
+ "14930def-136c-4eb4-b314-3dcd9fdff247"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -6939,16 +6372,16 @@
"11937"
],
"x-ms-correlation-request-id": [
- "20706565-9760-4c0e-a6f2-92f6c6c1688b"
+ "14930def-136c-4eb4-b314-3dcd9fdff247"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093623Z:20706565-9760-4c0e-a6f2-92f6c6c1688b"
+ "WESTCENTRALUS:20220322T101701Z:14930def-136c-4eb4-b314-3dcd9fdff247"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:36:23 GMT"
+ "Tue, 22 Mar 2022 10:17:01 GMT"
],
"Expires": [
"-1"
@@ -6961,19 +6394,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -6984,7 +6417,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -6993,7 +6426,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a63fa2c2-88d8-44f1-bd2e-87fbd78d80cc"
+ "e3977cfd-84b3-4901-9181-1ea9034536df"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7002,16 +6435,16 @@
"11936"
],
"x-ms-correlation-request-id": [
- "5eaec28d-2b6b-4eac-baef-b3e65277ee04"
+ "e3977cfd-84b3-4901-9181-1ea9034536df"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093724Z:5eaec28d-2b6b-4eac-baef-b3e65277ee04"
+ "WESTCENTRALUS:20220322T101802Z:e3977cfd-84b3-4901-9181-1ea9034536df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:37:23 GMT"
+ "Tue, 22 Mar 2022 10:18:01 GMT"
],
"Expires": [
"-1"
@@ -7024,19 +6457,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7047,7 +6480,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7056,7 +6489,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "99745199-ecf5-424e-8894-81f2bf17c8da"
+ "31da5289-9804-460e-8170-ab00c4bc034b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7065,16 +6498,16 @@
"11935"
],
"x-ms-correlation-request-id": [
- "6315c640-5493-455a-ad63-a428f7c22718"
+ "31da5289-9804-460e-8170-ab00c4bc034b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093824Z:6315c640-5493-455a-ad63-a428f7c22718"
+ "WESTCENTRALUS:20220322T101902Z:31da5289-9804-460e-8170-ab00c4bc034b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:38:24 GMT"
+ "Tue, 22 Mar 2022 10:19:01 GMT"
],
"Expires": [
"-1"
@@ -7087,19 +6520,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7110,7 +6543,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7119,25 +6552,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9b21588c-bacc-4540-943c-e12317e79a43"
+ "416bcbf7-77f7-4f48-99eb-25701b06e9f0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11939"
],
"x-ms-correlation-request-id": [
- "de100d12-7f47-4284-a429-56dcb2a474e9"
+ "416bcbf7-77f7-4f48-99eb-25701b06e9f0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T093924Z:de100d12-7f47-4284-a429-56dcb2a474e9"
+ "WESTCENTRALUS:20220322T102002Z:416bcbf7-77f7-4f48-99eb-25701b06e9f0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:39:24 GMT"
+ "Tue, 22 Mar 2022 10:20:01 GMT"
],
"Expires": [
"-1"
@@ -7150,19 +6583,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7173,7 +6606,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7182,7 +6615,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d0f29cf1-d5d8-4a6f-8472-c368b56cddca"
+ "50c615c6-764c-4214-aae4-57e9a03a5036"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7191,16 +6624,16 @@
"11938"
],
"x-ms-correlation-request-id": [
- "da79b053-ce35-4acc-b915-8a9714b92ce5"
+ "50c615c6-764c-4214-aae4-57e9a03a5036"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094025Z:da79b053-ce35-4acc-b915-8a9714b92ce5"
+ "WESTCENTRALUS:20220322T102102Z:50c615c6-764c-4214-aae4-57e9a03a5036"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:40:24 GMT"
+ "Tue, 22 Mar 2022 10:21:02 GMT"
],
"Expires": [
"-1"
@@ -7213,19 +6646,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7236,7 +6669,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7245,7 +6678,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "82f597fe-b6bb-4f79-b259-0b0169963e5b"
+ "5bca3b02-d0d8-4f9b-b593-d04374cad828"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7254,16 +6687,16 @@
"11937"
],
"x-ms-correlation-request-id": [
- "59828e19-5a8a-428c-868c-e5e317bcc914"
+ "5bca3b02-d0d8-4f9b-b593-d04374cad828"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094125Z:59828e19-5a8a-428c-868c-e5e317bcc914"
+ "WESTCENTRALUS:20220322T102202Z:5bca3b02-d0d8-4f9b-b593-d04374cad828"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:41:24 GMT"
+ "Tue, 22 Mar 2022 10:22:02 GMT"
],
"Expires": [
"-1"
@@ -7276,19 +6709,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7299,7 +6732,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7308,7 +6741,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f3d521f-68a9-4822-9721-912474328de2"
+ "07befa31-acd9-4d30-9a8c-abba9617669c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7317,16 +6750,16 @@
"11936"
],
"x-ms-correlation-request-id": [
- "3b993e31-835a-4e66-b3fc-2658d08e6856"
+ "07befa31-acd9-4d30-9a8c-abba9617669c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094225Z:3b993e31-835a-4e66-b3fc-2658d08e6856"
+ "WESTCENTRALUS:20220322T102303Z:07befa31-acd9-4d30-9a8c-abba9617669c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:42:25 GMT"
+ "Tue, 22 Mar 2022 10:23:02 GMT"
],
"Expires": [
"-1"
@@ -7339,19 +6772,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7362,7 +6795,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7371,7 +6804,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e9051ea-c50b-4f7b-ba4e-979a4fe27b8a"
+ "4bbc1977-c20e-40f5-8767-9d81fa704be7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7380,16 +6813,16 @@
"11935"
],
"x-ms-correlation-request-id": [
- "6c6c94f3-dd8c-4262-ab77-896f0f589696"
+ "4bbc1977-c20e-40f5-8767-9d81fa704be7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094325Z:6c6c94f3-dd8c-4262-ab77-896f0f589696"
+ "WESTCENTRALUS:20220322T102403Z:4bbc1977-c20e-40f5-8767-9d81fa704be7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:43:25 GMT"
+ "Tue, 22 Mar 2022 10:24:02 GMT"
],
"Expires": [
"-1"
@@ -7402,19 +6835,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7425,7 +6858,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7434,25 +6867,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "440dd5e3-56fa-4d71-b2b3-3f77b4a884be"
+ "1a649fe4-112e-40bd-8d81-47fce92abbfb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11939"
],
"x-ms-correlation-request-id": [
- "d020cbeb-0ce8-4fb1-a604-e18145a0aa15"
+ "1a649fe4-112e-40bd-8d81-47fce92abbfb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094426Z:d020cbeb-0ce8-4fb1-a604-e18145a0aa15"
+ "WESTCENTRALUS:20220322T102503Z:1a649fe4-112e-40bd-8d81-47fce92abbfb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:44:26 GMT"
+ "Tue, 22 Mar 2022 10:25:02 GMT"
],
"Expires": [
"-1"
@@ -7465,19 +6898,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7488,7 +6921,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7497,7 +6930,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d817100c-878e-4997-a4b9-cbc7fef5cdcd"
+ "96a19f98-521f-467b-b86a-2528ae1e0da1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7506,16 +6939,16 @@
"11938"
],
"x-ms-correlation-request-id": [
- "53ecb724-52d8-4c26-a45f-d91a38441055"
+ "96a19f98-521f-467b-b86a-2528ae1e0da1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094526Z:53ecb724-52d8-4c26-a45f-d91a38441055"
+ "WESTCENTRALUS:20220322T102603Z:96a19f98-521f-467b-b86a-2528ae1e0da1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:45:26 GMT"
+ "Tue, 22 Mar 2022 10:26:03 GMT"
],
"Expires": [
"-1"
@@ -7528,19 +6961,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7551,7 +6984,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7560,7 +6993,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d149ea79-3d3a-449c-b522-ee071952c899"
+ "6eb92bdb-cc1b-4ade-9e37-c91c105300c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7569,16 +7002,16 @@
"11937"
],
"x-ms-correlation-request-id": [
- "0b3bd173-26b6-4e10-83eb-1af17fa64d0f"
+ "6eb92bdb-cc1b-4ade-9e37-c91c105300c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094626Z:0b3bd173-26b6-4e10-83eb-1af17fa64d0f"
+ "WESTCENTRALUS:20220322T102703Z:6eb92bdb-cc1b-4ade-9e37-c91c105300c0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:46:25 GMT"
+ "Tue, 22 Mar 2022 10:27:03 GMT"
],
"Expires": [
"-1"
@@ -7591,19 +7024,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7614,7 +7047,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7623,7 +7056,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18fbc1d0-292f-41c7-8252-b35fb1c1e1b2"
+ "1c1ba56f-333d-421a-84cd-1b6e011818e5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7632,16 +7065,16 @@
"11936"
],
"x-ms-correlation-request-id": [
- "5516e4be-45bc-420b-9087-c8cccfc54335"
+ "1c1ba56f-333d-421a-84cd-1b6e011818e5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094726Z:5516e4be-45bc-420b-9087-c8cccfc54335"
+ "WESTCENTRALUS:20220322T102804Z:1c1ba56f-333d-421a-84cd-1b6e011818e5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:47:26 GMT"
+ "Tue, 22 Mar 2022 10:28:03 GMT"
],
"Expires": [
"-1"
@@ -7654,19 +7087,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7677,7 +7110,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7686,7 +7119,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4ecb88a6-59a5-4de1-ba5c-57b96bf693bb"
+ "6fabe7e5-e0a4-446c-bcb3-733352b9c159"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7695,16 +7128,16 @@
"11935"
],
"x-ms-correlation-request-id": [
- "622c37f5-293e-41f4-ac55-df553000c11b"
+ "6fabe7e5-e0a4-446c-bcb3-733352b9c159"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094827Z:622c37f5-293e-41f4-ac55-df553000c11b"
+ "WESTCENTRALUS:20220322T102904Z:6fabe7e5-e0a4-446c-bcb3-733352b9c159"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:48:27 GMT"
+ "Tue, 22 Mar 2022 10:29:03 GMT"
],
"Expires": [
"-1"
@@ -7717,19 +7150,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7740,7 +7173,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7749,25 +7182,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a6175a12-20d6-4b8b-95f9-febe74e99a01"
+ "5d7a117b-e2dd-4b6d-833f-6c7d5ba71c54"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11939"
],
"x-ms-correlation-request-id": [
- "0663c76f-a787-4a6c-b7e0-199106d852b6"
+ "5d7a117b-e2dd-4b6d-833f-6c7d5ba71c54"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T094927Z:0663c76f-a787-4a6c-b7e0-199106d852b6"
+ "WESTCENTRALUS:20220322T103004Z:5d7a117b-e2dd-4b6d-833f-6c7d5ba71c54"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:49:26 GMT"
+ "Tue, 22 Mar 2022 10:30:04 GMT"
],
"Expires": [
"-1"
@@ -7780,19 +7213,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7803,7 +7236,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7812,7 +7245,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c21a34c6-87ab-4be8-80c9-c107ab55954d"
+ "6411e4a4-5472-4c83-846c-d9655a5fed26"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7821,16 +7254,16 @@
"11938"
],
"x-ms-correlation-request-id": [
- "e088c300-69dd-4cea-83e7-ec52f9e4091a"
+ "6411e4a4-5472-4c83-846c-d9655a5fed26"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095027Z:e088c300-69dd-4cea-83e7-ec52f9e4091a"
+ "WESTCENTRALUS:20220322T103104Z:6411e4a4-5472-4c83-846c-d9655a5fed26"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:50:27 GMT"
+ "Tue, 22 Mar 2022 10:31:04 GMT"
],
"Expires": [
"-1"
@@ -7843,19 +7276,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7866,7 +7299,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7875,7 +7308,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7dfaaffb-a3e2-4600-a2f8-ac03223ae2a6"
+ "ea69555c-9a50-4610-a631-6111e9413324"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7884,16 +7317,16 @@
"11937"
],
"x-ms-correlation-request-id": [
- "1bcd858c-9b47-4e78-8f91-c7e8f1d21706"
+ "ea69555c-9a50-4610-a631-6111e9413324"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095128Z:1bcd858c-9b47-4e78-8f91-c7e8f1d21706"
+ "WESTCENTRALUS:20220322T103204Z:ea69555c-9a50-4610-a631-6111e9413324"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:51:27 GMT"
+ "Tue, 22 Mar 2022 10:32:04 GMT"
],
"Expires": [
"-1"
@@ -7906,19 +7339,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7929,7 +7362,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -7938,7 +7371,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0246d664-9165-4f16-ae7b-b2f2b687255e"
+ "b215ef32-36fc-498e-a18a-1893bbf1e4c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -7947,16 +7380,16 @@
"11936"
],
"x-ms-correlation-request-id": [
- "04bbc916-daa6-4a26-8b96-d16a9608c995"
+ "b215ef32-36fc-498e-a18a-1893bbf1e4c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095228Z:04bbc916-daa6-4a26-8b96-d16a9608c995"
+ "WESTCENTRALUS:20220322T103305Z:b215ef32-36fc-498e-a18a-1893bbf1e4c0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:52:27 GMT"
+ "Tue, 22 Mar 2022 10:33:04 GMT"
],
"Expires": [
"-1"
@@ -7969,19 +7402,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -7992,7 +7425,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8001,7 +7434,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ab01a5ab-b3f0-43ec-a9c0-621553c0274e"
+ "eb66c6c9-6028-4b9e-a7b7-2db30101f35f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8010,16 +7443,16 @@
"11935"
],
"x-ms-correlation-request-id": [
- "9f35116b-97e8-4b90-8a45-695a247414c3"
+ "eb66c6c9-6028-4b9e-a7b7-2db30101f35f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095328Z:9f35116b-97e8-4b90-8a45-695a247414c3"
+ "WESTCENTRALUS:20220322T103405Z:eb66c6c9-6028-4b9e-a7b7-2db30101f35f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:53:28 GMT"
+ "Tue, 22 Mar 2022 10:34:05 GMT"
],
"Expires": [
"-1"
@@ -8032,19 +7465,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8055,7 +7488,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8064,25 +7497,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6773e8de-feda-4557-8c25-4d3bb5db7b4b"
+ "f10982ce-c7ec-4eb5-8733-e4b538c81504"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11939"
],
"x-ms-correlation-request-id": [
- "fa6da06a-7bba-4310-a166-b9c19b7cf169"
+ "f10982ce-c7ec-4eb5-8733-e4b538c81504"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095428Z:fa6da06a-7bba-4310-a166-b9c19b7cf169"
+ "WESTCENTRALUS:20220322T103505Z:f10982ce-c7ec-4eb5-8733-e4b538c81504"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:54:28 GMT"
+ "Tue, 22 Mar 2022 10:35:05 GMT"
],
"Expires": [
"-1"
@@ -8095,19 +7528,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8118,7 +7551,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8127,7 +7560,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d06a27d0-6583-4e5e-bfd8-65273828f0dc"
+ "7294296f-e211-4921-94e8-67d3d2cd6dc2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8136,16 +7569,16 @@
"11938"
],
"x-ms-correlation-request-id": [
- "5634f709-414b-41ce-8334-e8f39567c845"
+ "7294296f-e211-4921-94e8-67d3d2cd6dc2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095529Z:5634f709-414b-41ce-8334-e8f39567c845"
+ "WESTCENTRALUS:20220322T103605Z:7294296f-e211-4921-94e8-67d3d2cd6dc2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:55:28 GMT"
+ "Tue, 22 Mar 2022 10:36:05 GMT"
],
"Expires": [
"-1"
@@ -8158,19 +7591,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8181,7 +7614,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8190,7 +7623,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "979650a9-2d8f-414c-ad03-41fbb925d1e6"
+ "b526d5ef-c9a4-43a8-b247-d1489e9c421d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8199,16 +7632,16 @@
"11937"
],
"x-ms-correlation-request-id": [
- "bea6f16a-884e-467d-b7bb-c6915f64ec43"
+ "b526d5ef-c9a4-43a8-b247-d1489e9c421d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095629Z:bea6f16a-884e-467d-b7bb-c6915f64ec43"
+ "WESTCENTRALUS:20220322T103705Z:b526d5ef-c9a4-43a8-b247-d1489e9c421d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:56:28 GMT"
+ "Tue, 22 Mar 2022 10:37:05 GMT"
],
"Expires": [
"-1"
@@ -8221,19 +7654,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8244,7 +7677,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8253,7 +7686,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6fbbfb27-d3bd-4a90-997e-4deeb15cab77"
+ "c6953f36-925e-4002-aa1b-e3cb993e7e21"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8262,16 +7695,16 @@
"11936"
],
"x-ms-correlation-request-id": [
- "f5e0746c-76f4-47c9-930c-50cdd54d1009"
+ "c6953f36-925e-4002-aa1b-e3cb993e7e21"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095729Z:f5e0746c-76f4-47c9-930c-50cdd54d1009"
+ "WESTCENTRALUS:20220322T103806Z:c6953f36-925e-4002-aa1b-e3cb993e7e21"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:57:29 GMT"
+ "Tue, 22 Mar 2022 10:38:05 GMT"
],
"Expires": [
"-1"
@@ -8284,19 +7717,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8307,7 +7740,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8316,7 +7749,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ba9494fe-dd03-497a-aafd-38e7d5f780b8"
+ "ac9e0f72-f68e-417b-9c6f-241acf9b896a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8325,16 +7758,16 @@
"11935"
],
"x-ms-correlation-request-id": [
- "163fdcca-e97e-4558-9502-3abdfe78e668"
+ "ac9e0f72-f68e-417b-9c6f-241acf9b896a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095830Z:163fdcca-e97e-4558-9502-3abdfe78e668"
+ "WESTCENTRALUS:20220322T103906Z:ac9e0f72-f68e-417b-9c6f-241acf9b896a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:58:29 GMT"
+ "Tue, 22 Mar 2022 10:39:05 GMT"
],
"Expires": [
"-1"
@@ -8347,19 +7780,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8370,7 +7803,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8379,25 +7812,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06a242ec-c1d9-4c3b-8159-9bcac7a884bd"
+ "d78bf964-1c69-49c5-b5a7-e234e22abf3d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11939"
],
"x-ms-correlation-request-id": [
- "346dc6e6-2835-4703-bfdf-116838eaf73e"
+ "d78bf964-1c69-49c5-b5a7-e234e22abf3d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T095930Z:346dc6e6-2835-4703-bfdf-116838eaf73e"
+ "WESTCENTRALUS:20220322T104006Z:d78bf964-1c69-49c5-b5a7-e234e22abf3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 09:59:30 GMT"
+ "Tue, 22 Mar 2022 10:40:05 GMT"
],
"Expires": [
"-1"
@@ -8410,19 +7843,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8433,7 +7866,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8442,7 +7875,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9dda1828-8f28-42c3-b6d6-5804976ae741"
+ "9dc01694-0300-4952-8df4-de8204eee9e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8451,16 +7884,16 @@
"11938"
],
"x-ms-correlation-request-id": [
- "9bcc2341-bd79-4e99-9751-d5ae2d3d2d08"
+ "9dc01694-0300-4952-8df4-de8204eee9e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100030Z:9bcc2341-bd79-4e99-9751-d5ae2d3d2d08"
+ "WESTCENTRALUS:20220322T104106Z:9dc01694-0300-4952-8df4-de8204eee9e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:00:29 GMT"
+ "Tue, 22 Mar 2022 10:41:05 GMT"
],
"Expires": [
"-1"
@@ -8473,19 +7906,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9BY3RfOWI0OTljZA==?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOUJZM1JmT1dJME9UbGpaQT09P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9BY3RfMWMxNTk4NmI=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOUJZM1JmTVdNeE5UazRObUk9P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc061cdf-a7dc-4dc7-b9a9-23ebb065f082"
+ "d0c5b6b8-fe3e-4215-9a89-a24f8db06018"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8499,7 +7932,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "85598209-7b84-4d99-bebd-b57293a12a70"
+ "6f72086e-8072-4460-9641-b2def3b64676"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8508,19 +7941,19 @@
"11937"
],
"x-ms-correlation-request-id": [
- "a42ec73d-a2b5-4757-9111-868c56cc01bc"
+ "6f72086e-8072-4460-9641-b2def3b64676"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100130Z:a42ec73d-a2b5-4757-9111-868c56cc01bc"
+ "WESTCENTRALUS:20220322T104206Z:6f72086e-8072-4460-9641-b2def3b64676"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:01:30 GMT"
+ "Tue, 22 Mar 2022 10:42:06 GMT"
],
"Content-Length": [
- "2103"
+ "2551"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8529,26 +7962,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154\",\r\n \"name\": \"ps4154\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+oA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T09:00:10.585047Z\",\r\n \"gatewayUrl\": \"https://ps4154.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4154-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4154.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4154.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4154.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4154.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4154.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.84.168.115\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976\",\r\n \"name\": \"ps4976\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof9E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T09:44:52.8608536Z\",\r\n \"gatewayUrl\": \"https://ps4976.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4976-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4976.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4976.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4976.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4976.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4976.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.21.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T09:44:52.826263Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T09:44:52.826263Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/getssotoken?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/getssotoken?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90e84454-7399-4ab5-9278-34b2a103259f"
+ "edac3f6a-d6d8-48d2-9a18-36d1cabf44e4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8562,7 +7995,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "91c34c4a-7229-46ed-99cf-cfd1347349a5"
+ "355346f2-8a81-47bb-a54d-5d141d793398"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8571,19 +8004,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "14bb91b5-512c-4aa9-a225-9c19422517e1"
+ "355346f2-8a81-47bb-a54d-5d141d793398"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100131Z:14bb91b5-512c-4aa9-a225-9c19422517e1"
+ "WESTCENTRALUS:20220322T104207Z:355346f2-8a81-47bb-a54d-5d141d793398"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:01:30 GMT"
+ "Tue, 22 Mar 2022 10:42:06 GMT"
],
"Content-Length": [
- "192"
+ "194"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8592,26 +8025,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"redirectUri\": \"https://ps4154.portal.azure-api.net:443/signin-sso?token=1%26202107151006%26nr9vhCt6umzmBL5byzwE4e8e%2fzRAW%2brS1sC2DLPE%2f3BCSp2knK7BqWLQwtXiHQEfusszTP548MSPrq7qNKBs1w%3d%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"redirectUri\": \"https://ps4976.portal.azure-api.net:443/signin-sso?token=1%26202203221047%26JcT1X9lkN44Zxu%2bz28xsryXmi2R%2bJV8KAwTUv%2fm64hjCauhBhxLQH7QYSFQqZUWeMrI43dGCO7lgfE2U9AOa%2fw%3d%3d\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e7fd8ad-75d3-42ac-8924-1de5461d95cd"
+ "43269027-7e7c-481d-928a-2431aaa2150a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8622,59 +8055,60 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "66ba1b71-a83f-439b-9c52-70311c029196",
- "e5a05710-0475-4c54-9056-57bd49641e69",
- "80d6c382-598f-458a-89e2-a9d037e488c5",
- "a26ae041-8306-4c15-99c1-1d0b489580f6",
- "f1ab98ec-41f0-4997-807e-3042cc4308da",
- "f6e90bb8-d2d8-4a89-9dd9-62e883562b61",
- "a1ed217d-28ed-49b6-a3ab-bc484851a6f9",
- "5ba26318-b90c-48ba-91cc-5db2bb752688",
- "fb63ee73-b004-4709-8845-9976fc1db9a7",
- "c592604c-2d41-4747-8733-807b037e62ff",
- "8197cf74-cb3e-4ee7-9ffd-959a800b972e",
- "83e125d6-1db6-4041-a002-cfc9bfc5192b",
- "eb78399b-64ea-489a-b5c0-1a8ee947665d",
- "6a14c437-60e4-4ee3-a1f8-1b28a84cfe4b",
- "1c9b7a2d-c958-4529-88b8-c7695c8bff2a",
- "5b7b3712-6326-4e8a-a048-1f9938103a9f",
- "b41090de-e568-4cb1-9bfa-2a5ee96f5986",
- "96140774-1024-45dc-90e9-1e1e3bcd285e",
- "b33841f6-74e6-4ede-9eb5-26ed2b1da3bb",
- "f3888108-4785-4c33-8ff0-2af3816af4bc",
- "cea94e6b-2db8-49e5-9e18-970baf8c3265",
- "cc2979fc-4b5b-43ce-a236-484db101f5c4",
- "77c99ee0-291f-4c1d-8b1a-41f640cd5c3d",
- "3ba9d8ca-86ff-4471-9325-2db3839c5441",
- "c08bc129-af9a-4b86-8840-75220088b40a",
- "26eb5c94-41cc-4bdb-843c-1af85f698cad",
- "52ef1f2b-8efd-402a-a06f-f4474ba65d05",
- "f1e9eafd-a009-441c-b97b-22a19ee803a1",
- "30f4fb2a-c976-4e4c-906c-9bd89b9e5e79",
- "d7d0fdfd-ebe7-45cb-baf4-883c19ebbb44",
- "9ef117fc-1dd4-4575-92b7-4d96d9b8b957",
- "a4762708-e148-480d-a00c-b1678ae18004",
- "6e211b87-1de3-4bd5-ba43-c88774e6dfa8",
- "0bc6eb48-3261-4760-b6a1-021eb4135ac5",
- "c67582ed-0d68-4699-8d6c-dd85f1b7e877",
- "a747737d-25f3-46b6-9837-68783d853d63",
- "d7968b00-bf18-4ca3-877e-2f43034f0ccd",
- "cf304041-2101-4448-83bd-ba58763aba01",
- "072459a9-2df1-46cf-b638-17a0439a4c87",
- "215bda28-0b7d-4409-85d9-f3958ce2a3ca",
- "75bbc033-ad32-461e-bd90-d1d8b7cda957"
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f",
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11936"
],
"x-ms-request-id": [
- "aab78b3c-2e36-4930-8b50-58ac66881855"
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f"
],
"x-ms-correlation-request-id": [
- "aab78b3c-2e36-4930-8b50-58ac66881855"
+ "f55bc306-deca-4c85-a83c-cbfdd3315f7f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100132Z:aab78b3c-2e36-4930-8b50-58ac66881855"
+ "WESTCENTRALUS:20220322T104208Z:f55bc306-deca-4c85-a83c-cbfdd3315f7f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8683,7 +8117,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:01:32 GMT"
+ "Tue, 22 Mar 2022 10:42:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8692,29 +8126,29 @@
"-1"
],
"Content-Length": [
- "357393"
+ "527226"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshicentralindia2\",\r\n \"name\": \"kjoshicentralindia2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central India\",\r\n \"etag\": \"AAAAAAAD6kA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"adfasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-25T02:01:58.012555Z\",\r\n \"gatewayUrl\": \"https://kjoshicentralindia2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicentralindia2-centralindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicentralindia2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicentralindia2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicentralindia2.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicentralindia2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicentralindia2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.172.190.13\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AusCentral-Canary\",\r\n \"name\": \"AusCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAD2gw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:44:40.2114897Z\",\r\n \"gatewayUrl\": \"https://auscentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"auscentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/GermanyWestCentral-Canary\",\r\n \"name\": \"GermanyWestCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAAHz1c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:03:09.6147637Z\",\r\n \"gatewayUrl\": \"https://germanywestcentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"germanywestcentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-west\",\r\n \"name\": \"igo-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUPY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-06T18:29:53.3821Z\",\r\n \"gatewayUrl\": \"https://igo-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-west-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.100.11\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus-cons\",\r\n \"name\": \"egtest2-wcus-cons\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIU/Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:13:12.0301258Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus-cons.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus-cons.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"0e60b5c1-920b-47fa-bab1-a1024f7da105\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Central-US/providers/Microsoft.ApiManagement/service/apim-basic-capacity-westcentralus\",\r\n \"name\": \"apim-basic-capacity-westcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUVc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apicore@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-03T06:24:38.2948268Z\",\r\n \"gatewayUrl\": \"https://apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-basic-capacity-westcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-basic-capacity-westcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-basic-capacity-westcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-basic-capacity-westcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-basic-capacity-westcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.209.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestCentralUS-Canary\",\r\n \"name\": \"WestCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIVBE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-07T18:55:30.5556042Z\",\r\n \"gatewayUrl\": \"https://westcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus\",\r\n \"name\": \"egtest2-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUZw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T03:08:55.5303136Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest2-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest2-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest2-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest2-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest2-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.239.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"522e156d-4ebe-40d5-9a1c-c0c9ca5fe806\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-cons-wcus\",\r\n \"name\": \"egtest-cons-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIU/o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:05:54.0136418Z\",\r\n \"gatewayUrl\": \"https://egtest-cons-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-cons-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"10fba2c6-37c6-4149-ab1b-58b6c9b17f65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-wcus\",\r\n \"name\": \"egtest-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUBs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:06:37.3004386Z\",\r\n \"gatewayUrl\": \"https://egtest-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.210.123\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitinConsumption2020\",\r\n \"name\": \"jitinConsumption2020\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIVBY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-30T07:39:30.0173932Z\",\r\n \"gatewayUrl\": \"https://jitinconsumption2020.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitinconsumption2020.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SwitzerlandNorth-Canary\",\r\n \"name\": \"SwitzerlandNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAAHA9Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:05:04.4040373Z\",\r\n \"gatewayUrl\": \"https://switzerlandnorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"switzerlandnorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiswitdistrust\",\r\n \"name\": \"kjoshiswitdistrust\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAAHZ1s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-09T22:23:33.183037Z\",\r\n \"gatewayUrl\": \"https://kjoshiswitdistrust.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiswitdistrust-switzerlandnorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiswitdistrust.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiswitdistrust.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiswitdistrust.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiswitdistrust.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiswitdistrust.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.103.131.114\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestIndia-Canary\",\r\n \"name\": \"WestIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAFcbA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:53.8127048Z\",\r\n \"gatewayUrl\": \"https://westindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/KoreaCentral-Canary\",\r\n \"name\": \"KoreaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAFE1c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:39.9581781Z\",\r\n \"gatewayUrl\": \"https://koreacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"koreacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshijnbzrs\",\r\n \"name\": \"kjoshijnbzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAGTvY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-09T18:53:27.2874676Z\",\r\n \"gatewayUrl\": \"https://kjoshijnbzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshijnbzrs-southafricanorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshijnbzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshijnbzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshijnbzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshijnbzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshijnbzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"102.133.171.130\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthAfricaNorth-Canary\",\r\n \"name\": \"SouthAfricaNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAF3Bo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:45:41.6554527Z\",\r\n \"gatewayUrl\": \"https://southafricanorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southafricanorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKWest-Canary\",\r\n \"name\": \"UKWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAITIE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:59:01.8019107Z\",\r\n \"gatewayUrl\": \"https://ukwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ukwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/BrazilSouth-Canary\",\r\n \"name\": \"BrazilSouth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAJYrc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:13.4420019Z\",\r\n \"gatewayUrl\": \"https://brazilsouth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"brazilsouth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshibrazilsouth\",\r\n \"name\": \"kjoshibrazilsouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAKeL0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-12-16T18:06:49.8946707Z\",\r\n \"gatewayUrl\": \"https://kjoshibrazilsouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshibrazilsouth-brazilsouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshibrazilsouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshibrazilsouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshibrazilsouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshibrazilsouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshibrazilsouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.195.196.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"64f33089-6da1-4df7-af44-04a5791ea0db\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastAsia-Canary\",\r\n \"name\": \"EastAsia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAAGmA8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:36.9340814Z\",\r\n \"gatewayUrl\": \"https://eastasia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastasia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthIndia-Canary\",\r\n \"name\": \"SouthIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAAF5g4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:49:09.9271745Z\",\r\n \"gatewayUrl\": \"https://southindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaCentral-Canary\",\r\n \"name\": \"CanadaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAI2+g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:43.0182697Z\",\r\n \"gatewayUrl\": \"https://canadacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshicanadaeast\",\r\n \"name\": \"kjoshicanadaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAAFFTM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-24T00:06:44.2654848Z\",\r\n \"gatewayUrl\": \"https://kjoshicanadaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicanadaeast-canadaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicanadaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicanadaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicanadaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicanadaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicanadaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.222.91\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaEast-Canary\",\r\n \"name\": \"CanadaEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAAEkhM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-29T15:09:19.077246Z\",\r\n \"gatewayUrl\": \"https://canadaeast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadaeast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/ASE-Canary\",\r\n \"name\": \"ASE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAAJi34=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:50:10.100096Z\",\r\n \"gatewayUrl\": \"https://ase-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ase-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanEast-Canary\",\r\n \"name\": \"JapanEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAAL76I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:08.4035509Z\",\r\n \"gatewayUrl\": \"https://japaneast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japaneast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOggw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAPNug=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-12T20:29:50.7685833Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-northcentraltest-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-northcentraltest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-northcentraltest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-northcentraltest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-northcentraltest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.240.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-04\",\r\n \"name\": \"jijohn-consumption-04\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOgvA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-01T03:05:35.5949176Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-04.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-04.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAPLs0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-06\",\r\n \"name\": \"jijohn-consumption-06\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOhug=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-16T17:22:24.5329871Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-06.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-06.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOguA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAMA1E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshisoutheastasiasql\",\r\n \"name\": \"kjoshisoutheastasiasql\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM83U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-06T18:17:41.2374301Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasiasql.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisoutheastasiasql-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisoutheastasiasql.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisoutheastasiasql.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisoutheastasiasql.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisoutheastasiasql.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasiasql.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.56.76\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshimovetest/providers/Microsoft.ApiManagement/service/kjoshisoutheastasia\",\r\n \"name\": \"kjoshisoutheastasia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM9Ps=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-14T18:55:36.5109929Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisoutheastasia-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisoutheastasia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisoutheastasia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisoutheastasia.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisoutheastasia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.116.142.191\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-forwarded-southeastasia-01\",\r\n \"name\": \"jijohn-forwarded-southeastasia-01\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM/s4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-26T19:12:20.269709Z\",\r\n \"gatewayUrl\": \"https://jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-forwarded-southeastasia-01-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-forwarded-southeastasia-01.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-forwarded-southeastasia-01.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-forwarded-southeastasia-01.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-forwarded-southeastasia-01.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.35.216\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshisoutheastasissql\",\r\n \"name\": \"kjoshisoutheastasissql\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM9LM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi test zrs backup\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-28T20:42:10.5254783Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasissql.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisoutheastasissql-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisoutheastasissql.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisoutheastasissql.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisoutheastasissql.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisoutheastasissql.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasissql.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.63.240.71\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/seasia-test\",\r\n \"name\": \"seasia-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAANBCo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"tdtdrtr\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-20T02:27:41.6012757Z\",\r\n \"gatewayUrl\": \"https://seasia-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seasia-test-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seasia-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seasia-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seasia-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seasia-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seasia-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.71.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshimovetest/providers/Microsoft.ApiManagement/service/kjoshizrs\",\r\n \"name\": \"kjoshizrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM8Eo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-15T01:43:01.5681376Z\",\r\n \"gatewayUrl\": \"https://kjoshizrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshizrs-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshizrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshizrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshizrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshizrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshizrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.126.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fed-sea1\",\r\n \"name\": \"jitin-fed-sea1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM7Qs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-28T00:41:44.8922579Z\",\r\n \"gatewayUrl\": \"https://jitin-fed-sea1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fed-sea1-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fed-sea1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fed-sea1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fed-sea1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fed-sea1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fed-sea1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.76.158.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/msic2dtest\",\r\n \"name\": \"msic2dtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATt+A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-18T10:31:02.3767262Z\",\r\n \"gatewayUrl\": \"https://msic2dtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://msic2dtest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://msic2dtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://msic2dtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://msic2dtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://msic2dtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"msic2dtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.17.207\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/glebrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mitest\": {\r\n \"principalId\": \"16a25af3-e38f-46fb-a7a9-2206552fb4af\",\r\n \"clientId\": \"e42a5c25-1406-4683-90f8-30b42b84ef98\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/Devops-lrp\",\r\n \"name\": \"Devops-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATuDE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-12T00:00:24.5450525Z\",\r\n \"gatewayUrl\": \"https://devops-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devops-lrp-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devops-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devops-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devops-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devops-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devops-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contoso.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-dev-keyvault.vault.azure.net/secrets/MsiTesting\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-03-30T11:36:23-07:00\",\r\n \"thumbprint\": \"0D689F0322B56BCAD0FEC0AEB8900261256C7B27\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.162.162\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4cef27e1-7082-4a28-9772-5336e3f5cf7e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS2-Canary\",\r\n \"name\": \"WUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAR6fI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:12.1377274Z\",\r\n \"gatewayUrl\": \"https://wus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption\",\r\n \"name\": \"kjoshiconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAR7Og=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-05T17:15:09.5924701Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"aa80091d-9ebb-43a7-a173-b83329bfb874\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnet\",\r\n \"name\": \"tehnoonr-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATtys=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-21T19:31:01.6390797Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"therazaportal.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:13:58-08:00\",\r\n \"thumbprint\": \"80D20AE4474CB5A3BBC0223DCBFE769AD7CF4AFE\",\r\n \"subject\": \"CN=therazaportal.apim.net, O=Microsoft, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.173.159\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.26.0.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption2\",\r\n \"name\": \"kjoshiconsumption2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAASrPg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-07T21:52:02.2250806Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off\",\r\n \"name\": \"gleb-corr-off\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpMM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"foo\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:11:18.1464015Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.14.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test\",\r\n \"name\": \"alanfeng-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATyj4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T00:54:33.1727007Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alanfeng-test-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alanfeng-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alanfeng-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alanfeng-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://alanfeng-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.148.165.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-on\",\r\n \"name\": \"gleb-corr-on\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpNY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"asdasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:01:45.0345532Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-on.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-on-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-on.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-on.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-on.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-on.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-on.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.247.221.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vmss-vnet\",\r\n \"name\": \"tehnoonr-vmss-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATx18=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-27T21:23:44.1115799Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vmss-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vmss-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vmss-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vmss-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vmss-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vmss-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vmss-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.70.8\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/mynewsubnet2\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/gleb-ai/providers/Microsoft.ApiManagement/service/gleb-trace\",\r\n \"name\": \"gleb-trace\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpL4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dfsdfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-16T19:32:41.6343295Z\",\r\n \"gatewayUrl\": \"https://gleb-trace.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-trace-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-trace.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-trace.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-trace.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-trace.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-trace.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.8.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/debugger/providers/Microsoft.ApiManagement/service/debugger\",\r\n \"name\": \"debugger\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mijiang\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATsVk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-26T20:32:34.0546555Z\",\r\n \"gatewayUrl\": \"https://debugger.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://debugger-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://debugger.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://debugger.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://debugger.management.azure-api.net\",\r\n \"scmUrl\": \"https://debugger.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"debugger.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.183.42.48\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.ApiManagement/service/dapr-call\",\r\n \"name\": \"dapr-call\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mkim\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAT194=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-28T19:13:58.8059982Z\",\r\n \"gatewayUrl\": \"https://dapr-call.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dapr-call-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dapr-call.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dapr-call.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dapr-call.management.azure-api.net\",\r\n \"scmUrl\": \"https://dapr-call.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dapr-call.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.23.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpME=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-reserved-ip.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnetbadcert\",\r\n \"name\": \"tehnoonr-vnetbadcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATuGs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-19T20:02:03.0283499Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnetbadcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnetbadcert-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnetbadcert.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnetbadcert.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnetbadcert.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnetbadcert.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnetbadcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.158.252.155\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/CloudServiceTest\",\r\n \"name\": \"CloudServiceTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY6vI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:56:15.4310419Z\",\r\n \"gatewayUrl\": \"https://cloudservicetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cloudservicetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cloudservicetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cloudservicetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cloudservicetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://cloudservicetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cloudservicetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.184.231\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/vscodetest3\",\r\n \"name\": \"vscodetest3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXqac=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:37:34.6402046Z\",\r\n \"gatewayUrl\": \"https://vscodetest3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154\",\r\n \"name\": \"ps4154\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+oA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T09:00:10.585047Z\",\r\n \"gatewayUrl\": \"https://ps4154.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4154-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4154.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4154.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4154.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4154.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4154.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.84.168.115\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ContosoGroup02/providers/Microsoft.ApiManagement/service/ContosoApi2\",\r\n \"name\": \"ContosoApi2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXYGc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T22:34:12.7640649Z\",\r\n \"gatewayUrl\": \"https://contosoapi2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://contosoapi2-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://contosoapi2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://contosoapi2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://contosoapi2.management.azure-api.net\",\r\n \"scmUrl\": \"https://contosoapi2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contosoapi2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.240.65\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286\",\r\n \"name\": \"ps8286\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+fs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T07:53:48.2976481Z\",\r\n \"gatewayUrl\": \"https://ps8286.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8286-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8286.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8286.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8286.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8286.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8286.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.182.227.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-apim/providers/Microsoft.ApiManagement/service/tehnoonr-apim3\",\r\n \"name\": \"tehnoonr-apim3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAYHGY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T16:25:34.5489001Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-apim3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-apim3-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-apim3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-apim3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-apim3.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-apim3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-apim3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.198.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e67f9e1e-6763-4024-8ee1-720d667cb148\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUS-Canary\",\r\n \"name\": \"CUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXq7w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:47:24.9248008Z\",\r\n \"gatewayUrl\": \"https://cus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/VscodeTest\",\r\n \"name\": \"VscodeTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXRhY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:00:50.8875823Z\",\r\n \"gatewayUrl\": \"https://vscodetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vscodetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vscodetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vscodetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vscodetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vscodetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.73.40\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9286/providers/Microsoft.ApiManagement/service/ps6637\",\r\n \"name\": \"ps6637\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+KA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T04:37:43.8312417Z\",\r\n \"gatewayUrl\": \"https://ps6637.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6637-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6637.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6637.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6637.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6637.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6637.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.154.217.165\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKS-Canary\",\r\n \"name\": \"UKS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAATuoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:47.9089467Z\",\r\n \"gatewayUrl\": \"https://uks-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uks-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiauseastzrs\",\r\n \"name\": \"kjoshiauseastzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAASess=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjsohi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-09T20:10:10.0454066Z\",\r\n \"gatewayUrl\": \"https://kjoshiauseastzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiauseastzrs-australiaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiauseastzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiauseastzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiauseastzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiauseastzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiauseastzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.75.182.144\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-aueast\",\r\n \"name\": \"gleb-aueast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAQtqE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"czxczxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-25T21:13:49.2851403Z\",\r\n \"gatewayUrl\": \"https://gleb-aueast.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-aueast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAQtNU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanWest-Canary\",\r\n \"name\": \"JapanWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"etag\": \"AAAAAAAEzps=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T15:51:51.233468Z\",\r\n \"gatewayUrl\": \"https://japanwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japanwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/ogf\",\r\n \"name\": \"ogf\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdZZ8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-08T18:11:26.9902003Z\",\r\n \"gatewayUrl\": \"https://ogf.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.248.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-test\",\r\n \"name\": \"igo-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-19T18:40:24.5701371Z\",\r\n \"gatewayUrl\": \"https://igo-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.59.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLaE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohndiagnosticlogs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.64.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/multiregiondisablesecondary\",\r\n \"name\": \"multiregiondisablesecondary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdeIo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T19:16:11.2793778Z\",\r\n \"gatewayUrl\": \"https://multiregiondisablesecondary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://multiregiondisablesecondary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://multiregiondisablesecondary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://multiregiondisablesecondary.management.azure-api.net\",\r\n \"scmUrl\": \"https://multiregiondisablesecondary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"multiregiondisablesecondary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.99.158\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"40.117.56.33\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbbLU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-inittest\",\r\n \"name\": \"gleb-inittest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdeWM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dsfsdfsdfs\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-19T00:43:17.2463706Z\",\r\n \"gatewayUrl\": \"https://gleb-inittest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-inittest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-inittest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-inittest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-inittest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-inittest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.125.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"e49076f0-829d-4af8-a0d3-3655f3e9161d\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test3\",\r\n \"name\": \"jitin-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdamY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"asd@m.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:24:33.8034229Z\",\r\n \"gatewayUrl\": \"https://jitin-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.171.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-g2bomw6eu755pgttzo76wxnqm73eub4herxyphfjhnmah3r4svwube4zaaev6/providers/Microsoft.ApiManagement/service/cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj\",\r\n \"name\": \"cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdYHc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-23T00:23:04.7311039Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.100.42.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\",\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLUo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://aztest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.195.148\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n }\r\n },\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2036-06-28T08:37:53-07:00\",\r\n \"thumbprint\": \"C5091132E9ADF8AD3E33932AE60A5C8FA939E824\",\r\n \"subject\": \"CN=Cisco Umbrella Root CA, O=Cisco\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b681823-8edc-4e3e-84e4-4a5616a2f28b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test2\",\r\n \"name\": \"jitin-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbeu8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:34:55.8132257Z\",\r\n \"gatewayUrl\": \"https://jitin-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apimanagement-cors-proxy-df.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devenv.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": [],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"aa00a773-23a4-42b1-b4a8-8ef9cee72920\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-pwusprksufiyswdvnjhqdbqxgtc4o3lzxopce6ombbc3xctqxxfcyrcpk3gky/providers/Microsoft.ApiManagement/service/cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s\",\r\n \"name\": \"cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdaT4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-23T17:31:29.3407434Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.50.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbaE0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbbiU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-bjrwpbupolctjc4koww7kewlygazaapv7uxl63a4rvtt4yrc5deurr4qqpzwp/providers/Microsoft.ApiManagement/service/cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3\",\r\n \"name\": \"cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdYIk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-16T22:31:18.1219007Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.122.83\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test2\",\r\n \"name\": \"alanfeng-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAcOlg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@example.com\",\r\n \"publisherName\": \"Publisher\",\r\n \"notificationSenderEmail\": \"publisher@example.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-21T23:49:32.5193553Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimmonetization/providers/Microsoft.ApiManagement/service/alzaslonmonetization20110708\",\r\n \"name\": \"alzaslonmonetization20110708\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdc6E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:22:28.1527262Z\",\r\n \"gatewayUrl\": \"https://alzaslonmonetization20110708.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslonmonetization20110708-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslonmonetization20110708.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslonmonetization20110708.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslonmonetization20110708.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslonmonetization20110708.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslonmonetization20110708.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.250.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fc5c18d2-0309-4b38-8c2a-f548b5e06ee3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestAPIManage123\",\r\n \"name\": \"TestAPIManage123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdMoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPI\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-11T14:24:14.6253855Z\",\r\n \"gatewayUrl\": \"https://testapimanage123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapimanage123-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapimanage123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapimanage123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapimanage123.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapimanage123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapimanage123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.7.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off2\",\r\n \"name\": \"gleb-corr-off2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLT8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dassdsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:58:27.2967081Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off2.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.252.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"54c1d67c-4a66-40e2-859c-eaf32dbd00ff\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-57-outage/providers/Microsoft.ApiManagement/service/kjoshisncablecut\",\r\n \"name\": \"kjoshisncablecut\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdTeg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sfdasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-16T17:52:35.2856029Z\",\r\n \"gatewayUrl\": \"https://kjoshisncablecut.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisncablecut-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisncablecut.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisncablecut.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisncablecut.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisncablecut.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisncablecut.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.117.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14d2a59a-3ef8-4cf7-b783-66fa6d9ac26b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbagc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41128fb9-0565-4a21-ad64-ef9282afb49c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/delete-me\",\r\n \"name\": \"delete-me\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdYJQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-02T20:10:40.2502073Z\",\r\n \"gatewayUrl\": \"https://delete-me.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete-me-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete-me.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete-me.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete-me.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete-me.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete-me.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.74.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntestConsumption\",\r\n \"name\": \"tntestConsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbc3Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"atuannguyen1997@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-22T00:04:17.8294341Z\",\r\n \"gatewayUrl\": \"https://tntestconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntestconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"004f6096-d97a-4a99-9c09-7499ee36129a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest\",\r\n \"name\": \"tntest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\",\r\n \"accountName\": \"azureapimanagement\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdeB0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tuanguye@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-29T17:08:15.1230697Z\",\r\n \"gatewayUrl\": \"https://tntest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"google.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-10-08T12:22:22-07:00\",\r\n \"thumbprint\": \"280743F071927D36CAC49A5A9066B0C256145982\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.165.120\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_128_CBC_SHA256\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2017-03-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/FranceCentral-Canary\",\r\n \"name\": \"FranceCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"France Central\",\r\n \"etag\": \"AAAAAAAGlBQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:16:01.6505783Z\",\r\n \"gatewayUrl\": \"https://francecentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"francecentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest1\",\r\n \"name\": \"tntest1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARKCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"a@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-21T05:15:14.3715298Z\",\r\n \"gatewayUrl\": \"https://tntest1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest1.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"70.37.74.153\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.Network/virtualNetworks/jikang-test-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v2\",\r\n \"name\": \"jijohn-isolated-prod-v2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHp0E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T20:41:11.6877505Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v2-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.ApiManagement/service/sfapim-jikang-testing\",\r\n \"name\": \"sfapim-jikang-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARKWw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T01:25:32.9898807Z\",\r\n \"gatewayUrl\": \"https://sfapim-jikang-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sfapim-jikang-testing-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sfapim-jikang-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sfapim-jikang-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sfapim-jikang-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://sfapim-jikang-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sfapim-jikang-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.215.115.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.Network/virtualNetworks/jikang-test-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"subnetAddress\": \"10.0.1.0/24\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"658e1d98-0b1c-48fa-b1ef-21fb1efe1c83\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARFYs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisnoutagescus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARKTI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://accessibility.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"6a729ed5-af23-49c1-9ff5-56efddf1dcbc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthCentralUS-Canary\",\r\n \"name\": \"SouthCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAPERA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:01:56.1912158Z\",\r\n \"gatewayUrl\": \"https://southcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v1\",\r\n \"name\": \"jijohn-isolated-prod-v1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHdzY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T00:35:51.4220489Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp\",\r\n \"name\": \"devportal-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARJew=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"API management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-16T17:38:14.081027Z\",\r\n \"gatewayUrl\": \"https://devportal-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devportal-lrp-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devportal-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devportal-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devportal-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devportal-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devportal-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.240.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5ad27f6-e2f1-48e2-a287-d96d6a2bc8d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Test-remote-debugging/providers/Microsoft.ApiManagement/service/bugbash-Galin\",\r\n \"name\": \"bugbash-Galin\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAARq40=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-17T18:10:51.6628173Z\",\r\n \"gatewayUrl\": \"https://bugbash-galin.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://bugbash-galin-eastus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://bugbash-galin.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://bugbash-galin.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://bugbash-galin.management.azure-api.net\",\r\n \"scmUrl\": \"https://bugbash-galin.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"bugbash-galin.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.252.118.227\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f80f1b1a-ccfa-45a2-b2ca-066069ac9808\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastUS2-Canary\",\r\n \"name\": \"EastUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAR9hQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-16T02:13:20.6966778Z\",\r\n \"gatewayUrl\": \"https://eastus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ui-test-resources/providers/Microsoft.ApiManagement/service/uitest\",\r\n \"name\": \"uitest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA417U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"uitest@apimuitest.onmicrosoft.com\",\r\n \"publisherName\": \"APIM UI Tests\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-16T14:53:14.5470049Z\",\r\n \"gatewayUrl\": \"https://uitest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://uitest-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://uitest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://uitest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://uitest.management.azure-api.net\",\r\n \"scmUrl\": \"https://uitest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uitest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.186.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/jikang-msi\",\r\n \"name\": \"jikang-msi\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jikang\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA4xhI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-14T22:42:31.4857913Z\",\r\n \"gatewayUrl\": \"https://jikang-msi.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jikang-msi-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jikang-msi.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jikang-msi.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jikang-msi.management.azure-api.net\",\r\n \"scmUrl\": \"https://jikang-msi.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jikang-msi.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.24.84\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"84e9ecc2-5001-4fe8-93e5-0842d3fa5096\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Mahsa-Container/providers/Microsoft.ApiManagement/service/Mahsa-APIM\",\r\n \"name\": \"Mahsa-APIM\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA44a8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mhasanisadi@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-18T18:57:50.0244482Z\",\r\n \"gatewayUrl\": \"https://mahsa-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mahsa-apim-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mahsa-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mahsa-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mahsa-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://mahsa-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mahsa-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.81.12.249\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS-Canary\",\r\n \"name\": \"EUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAypN0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:52.9254769Z\",\r\n \"gatewayUrl\": \"https://eus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/tntestNewApiVersion\",\r\n \"name\": \"tntestNewApiVersion\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA4yyE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"atuannguyen1997@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-24T21:06:41.3644516Z\",\r\n \"gatewayUrl\": \"https://tntestnewapiversion.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntestnewapiversion-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntestnewapiversion.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntestnewapiversion.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntestnewapiversion.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntestnewapiversion.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntestnewapiversion.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.188.124.196\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest1/providers/Microsoft.ApiManagement/service/delete7\",\r\n \"name\": \"delete7\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA3YoA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"m\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-24T00:56:34.1392279Z\",\r\n \"gatewayUrl\": \"https://delete7.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete7-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete7.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete7.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete7.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete7.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete7.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest1/providers/Microsoft.Network/virtualNetworks/will-be-deleted-vnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fb4fdadc-f594-493d-963a-453d8ee8ed4c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test-consumption\",\r\n \"name\": \"alanfeng-test-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA2OXY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T01:07:26.9020978Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA4apU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/APIM_OGF/providers/Microsoft.ApiManagement/service/ogftest123\",\r\n \"name\": \"ogftest123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5Oto=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-ssaiprasan@microsoft.com\",\r\n \"publisherName\": \"test78\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T10:14:13.7358898Z\",\r\n \"gatewayUrl\": \"https://ogftest123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogftest123-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogftest123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogftest123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogftest123.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogftest123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogftest123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.164.27\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4a2500a6-1273-42bf-a6ad-05272ee561ef\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/scfitzgeAPIM/providers/Microsoft.ApiManagement/service/apitester3000\",\r\n \"name\": \"apitester3000\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA41Qg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"scfitzge@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-05T20:30:06.410739Z\",\r\n \"gatewayUrl\": \"https://apitester3000.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apitester3000-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apitester3000.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apitester3000.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apitester3000.management.azure-api.net\",\r\n \"scmUrl\": \"https://apitester3000.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apitester3000.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.85.173.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/delete1\",\r\n \"name\": \"delete1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA479A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"m\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-22T20:48:11.3971577Z\",\r\n \"gatewayUrl\": \"https://delete1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete1-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete1.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.91.146\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/virtualNetworks/new-vnet-2/subnets/A\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAh+y4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest12\",\r\n \"name\": \"tntest12\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAkH0s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vvktest@gmail.com\",\r\n \"publisherName\": \"m\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:51:51.2971264Z\",\r\n \"gatewayUrl\": \"https://tntest12.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest12-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest12.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest12.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest12.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest12.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest12.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.93.104.129\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest14\",\r\n \"name\": \"tntest14\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAkHxY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tntest@gmail.com\",\r\n \"publisherName\": \"tntest04\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-10T00:18:29.4518304Z\",\r\n \"gatewayUrl\": \"https://tntest14.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest14-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest14.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest14.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest14.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest14.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest14.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.67.137.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\",\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAh+jk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest13\",\r\n \"name\": \"tntest13\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAkHxc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"a\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-10T00:11:57.014438Z\",\r\n \"gatewayUrl\": \"https://tntest13.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest13-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest13.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest13.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest13.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest13.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest13.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.67.228.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fwd-north-europe\",\r\n \"name\": \"jitin-fwd-north-europe\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAj6Ek=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T00:58:18.8388979Z\",\r\n \"gatewayUrl\": \"https://jitin-fwd-north-europe.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fwd-north-europe-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fwd-north-europe.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fwd-north-europe.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fwd-north-europe.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fwd-north-europe.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fwd-north-europe.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.164.120.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABbJBI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/corrtest\",\r\n \"name\": \"corrtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABaE+Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T05:32:44.2623295Z\",\r\n \"gatewayUrl\": \"https://corrtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://corrtest-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://corrtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://corrtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://corrtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://corrtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"corrtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.63.98.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABaFAI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vpnpremium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://samir-msi-keyvault.vault.azure.net/secrets/msicertificate\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-12-18T03:11:47-08:00\",\r\n \"thumbprint\": \"9833D531D7A45C565766F2A85908BD3692E0BD3F\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ca1d33f7-3cf9-42ec-b3e9-d526a1ee953a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/test-fwd-westeurope\",\r\n \"name\": \"test-fwd-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABaNeA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T01:01:10.5192286Z\",\r\n \"gatewayUrl\": \"https://test-fwd-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://test-fwd-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://test-fwd-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://test-fwd-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://test-fwd-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://test-fwd-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test-fwd-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.30.219\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-usw3-az\",\r\n \"name\": \"jijohn-usw3-az\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 3\",\r\n \"etag\": \"AAAAAAAAv4s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-10T17:20:52.7775395Z\",\r\n \"gatewayUrl\": \"https://jijohn-usw3-az.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-usw3-az-westus3-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-usw3-az.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-usw3-az.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-usw3-az.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-usw3-az.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-usw3-az.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.150.251.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 4\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-usw3\",\r\n \"name\": \"jijohn-consumption-usw3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 3\",\r\n \"etag\": \"AAAAAAAAX/k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-21T18:12:31.9230929Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-usw3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-usw3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-jio-india-west\",\r\n \"name\": \"jijohn-jio-india-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"AAAAAAAANMc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-24T20:46:56.3060919Z\",\r\n \"gatewayUrl\": \"https://jijohn-jio-india-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-jio-india-west-jioindiawest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-jio-india-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-jio-india-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-jio-india-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-jio-india-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-jio-india-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.64.18.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-australiacentral2-vmss-test3\",\r\n \"name\": \"apim-australiacentral2-vmss-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAC3gU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-26T22:18:09.8509396Z\",\r\n \"gatewayUrl\": \"https://apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-australiacentral2-vmss-test3-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-australiacentral2-vmss-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-australiacentral2-vmss-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-australiacentral2-vmss-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-australiacentral2-vmss-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.66.131\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-cbr2\",\r\n \"name\": \"jitin-cbr2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAC3c0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-17T22:22:26.3793973Z\",\r\n \"gatewayUrl\": \"https://jitin-cbr2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-cbr2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-cbr2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-cbr2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-cbr2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-cbr2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-cbr2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.71.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AustraliaCentral2-Canary\",\r\n \"name\": \"AustraliaCentral2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAC4RU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:01:59.2396648Z\",\r\n \"gatewayUrl\": \"https://australiacentral2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"australiacentral2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-bn1-euap\",\r\n \"name\": \"jijohn-bn1-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAH0xU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-14T17:38:53.5597669Z\",\r\n \"gatewayUrl\": \"https://jijohn-bn1-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-bn1-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/kjoshitestdelete\",\r\n \"name\": \"kjoshitestdelete\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrFc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"fdsfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-02T19:31:21.4943928Z\",\r\n \"gatewayUrl\": \"https://kjoshitestdelete.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshitestdelete-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshitestdelete.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshitestdelete.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshitestdelete.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshitestdelete.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshitestdelete.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.39.27.129\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test-selfhostedgateway-billing-euap-east\",\r\n \"name\": \"jitin-test-selfhostedgateway-billing-euap-east\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrE8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-15T18:44:34.0559846Z\",\r\n \"gatewayUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east-eu2e-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test-selfhostedgateway-billing-euap-east.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.71.201\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"52.180.162.187\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east-cue-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieuapzrs\",\r\n \"name\": \"kjoshieuapzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrFk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-01-27T03:09:46.1687334Z\",\r\n \"gatewayUrl\": \"https://kjoshieuapzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieuapzrs-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieuapzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshieuapzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieuapzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieuapzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieuapzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.79.113.1\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/az-testing\",\r\n \"name\": \"az-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrJE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"abc@gmail.com\",\r\n \"publisherName\": \"abc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-21T21:03:19.4891773Z\",\r\n \"gatewayUrl\": \"https://az-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://az-testing-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://az-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://az-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://az-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://az-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"az-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.156.203\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 3\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3f8ff19a-8e21-4440-9263-d312ca844009\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/maskingtest\",\r\n \"name\": \"maskingtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIz/U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"fdsfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-12-08T17:33:46.4391597Z\",\r\n \"gatewayUrl\": \"https://maskingtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://maskingtest-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://maskingtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://maskingtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://maskingtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://maskingtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"maskingtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.79.112.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"944d40de-c9b8-4df7-ba95-b34cfb9ebcee\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-eastus2euap\",\r\n \"name\": \"tntest-eastus2euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrF8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"abc@gmail.com\",\r\n \"publisherName\": \"abc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-14T22:39:14.7172966Z\",\r\n \"gatewayUrl\": \"https://tntest-eastus2euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-eastus2euap-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest-eastus2euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest-eastus2euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest-eastus2euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest-eastus2euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest-eastus2euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.146.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-consumption-test\",\r\n \"name\": \"jitin-consumption-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrFs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:18:44.5458147Z\",\r\n \"gatewayUrl\": \"https://jitin-consumption-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-consumption-test-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-consumption-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-consumption-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-consumption-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-consumption-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-consumption-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.151.226\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS2EUAP-Canary\",\r\n \"name\": \"EUS2EUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAH0xQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:13.9169127Z\",\r\n \"gatewayUrl\": \"https://eus2euap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus2euap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/corrtest2\",\r\n \"name\": \"corrtest2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAH0xE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"fsdsds\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-12T15:22:29.0211308Z\",\r\n \"gatewayUrl\": \"https://corrtest2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"corrtest2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"eed46f16-8a01-4b45-a5b8-acdf2d6c415e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/testlrp/providers/Microsoft.ApiManagement/service/DevO-lrp-canary\",\r\n \"name\": \"DevO-lrp-canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAP3iM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-30T18:02:47.6935595Z\",\r\n \"gatewayUrl\": \"https://devo-lrp-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devo-lrp-canary-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devo-lrp-canary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devo-lrp-canary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devo-lrp-canary.management.azure-api.net\",\r\n \"scmUrl\": \"https://devo-lrp-canary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devo-lrp-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.235.165\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-forwarded-euap\",\r\n \"name\": \"jitin-dedicated-forwarded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtEo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-06T01:45:14.4195684Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-forwarded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-forwarded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-forwarded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-forwarded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-forwarded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.54.141\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest-cons\",\r\n \"name\": \"glebegtest-cons\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPrXQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"wadasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:13:08.8791547Z\",\r\n \"gatewayUrl\": \"https://glebegtest-cons.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebegtest-cons.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/apim-basic-capacity-canary\",\r\n \"name\": \"apim-basic-capacity-canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtiA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apicore@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-03T06:23:32.1664949Z\",\r\n \"gatewayUrl\": \"https://apim-basic-capacity-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-basic-capacity-canary-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-basic-capacity-canary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-basic-capacity-canary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-basic-capacity-canary.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-basic-capacity-canary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-basic-capacity-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.224.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-east-us-2-euap/providers/Microsoft.ApiManagement/service/alzasloneuap03\",\r\n \"name\": \"alzasloneuap03\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAP1x4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-23T16:26:47.8637967Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap03.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap03-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap03.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap03.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap03.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap03.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap03.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.160.66\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"91a2e416-5fb4-4916-95d4-64b306f9d924\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n },\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/Api-Default-West-Europe/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vpnpremium\": {\r\n \"principalId\": \"95194df2-9208-4128-af2d-a10d2af9b5a3\",\r\n \"clientId\": \"aaff9c7d-6328-4db2-9844-ab0e3e7806cf\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-global-rp\",\r\n \"name\": \"jitin-dedicated-global-rp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtE4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T21:17:27.8631556Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-global-rp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-global-rp-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-global-rp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-global-rp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-global-rp.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-global-rp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-global-rp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.250\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/VscodeTest/providers/Microsoft.ApiManagement/service/Petstore-demo\",\r\n \"name\": \"Petstore-demo\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtF4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T22:39:34.6910007Z\",\r\n \"gatewayUrl\": \"https://petstore-demo.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://petstore-demo-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://petstore-demo.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://petstore-demo.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://petstore-demo.management.azure-api.net\",\r\n \"scmUrl\": \"https://petstore-demo.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"petstore-demo.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.60.65\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest\",\r\n \"name\": \"glebegtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtGA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"xcvxcvxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:12:14.2339542Z\",\r\n \"gatewayUrl\": \"https://glebegtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebegtest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebegtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://glebegtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebegtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebegtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebegtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.229.177\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-fwded-euap\",\r\n \"name\": \"jitin-dedicated-fwded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtFQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T22:54:10.528244Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-fwded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-fwded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-fwded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-fwded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-fwded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.48.106\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUSEUAP-Canary\",\r\n \"name\": \"CUSEUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAOg6I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:40:38.7929014Z\",\r\n \"gatewayUrl\": \"https://cuseuap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cuseuap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6203f1ba-72eb-4a6d-a878-c914fa25b5a4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtEY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-30T18:48:04.0720868Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.164\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"732dcbcd-116e-4e3e-a9b2-b8ec6f0ce3e7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/internal-vnet/providers/Microsoft.ApiManagement/service/samirhsbcvnet\",\r\n \"name\": \"samirhsbcvnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtFA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-04T18:33:42.1493502Z\",\r\n \"gatewayUrl\": \"https://samirhsbcvnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://samirhsbcvnet-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://samirhsbcvnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://samirhsbcvnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://samirhsbcvnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://samirhsbcvnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"samirhsbcvnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.180.157\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.31.0.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/internal-vnet/providers/Microsoft.Network/virtualNetworks/apimvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test-selfhostedgateway-billing-euap-central\",\r\n \"name\": \"jitin-test-selfhostedgateway-billing-euap-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtEI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-15T18:45:25.4189918Z\",\r\n \"gatewayUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central-cue-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test-selfhostedgateway-billing-euap-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.13.3\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/testlrp/providers/Microsoft.ApiManagement/service/Dev-lrp-canary2\",\r\n \"name\": \"Dev-lrp-canary2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAP3RQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T22:20:07.5445667Z\",\r\n \"gatewayUrl\": \"https://dev-lrp-canary2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dev-lrp-canary2-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dev-lrp-canary2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dev-lrp-canary2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dev-lrp-canary2.management.azure-api.net\",\r\n \"scmUrl\": \"https://dev-lrp-canary2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dev-lrp-canary2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.238.147\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-central-euap\",\r\n \"name\": \"jijohn-central-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtHY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-15T03:01:22.9302721Z\",\r\n \"gatewayUrl\": \"https://jijohn-central-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-central-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-central-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-central-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-central-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-central-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-central-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.225.10\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_128_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/DebuggingTest\",\r\n \"name\": \"DebuggingTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtFw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T17:31:21.1998429Z\",\r\n \"gatewayUrl\": \"https://debuggingtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://debuggingtest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://debuggingtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://debuggingtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://debuggingtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://debuggingtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"debuggingtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.162.95\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-uae-central\",\r\n \"name\": \"jitin-uae-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAADBWA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-12T18:44:51.9105707Z\",\r\n \"gatewayUrl\": \"https://jitin-uae-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-uae-central-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-uae-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-uae-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-uae-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-uae-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-uae-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.64.181\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-uaecentral-vmss\",\r\n \"name\": \"apim-uaecentral-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAADBVE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:40:25.8886265Z\",\r\n \"gatewayUrl\": \"https://apim-uaecentral-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-uaecentral-vmss-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-uaecentral-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-uaecentral-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-uaecentral-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-uaecentral-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-uaecentral-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.70.76\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-germanynorth-vmss\",\r\n \"name\": \"apim-germanynorth-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany North\",\r\n \"etag\": \"AAAAAAACsuY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T01:37:08.6104095Z\",\r\n \"gatewayUrl\": \"https://apim-germanynorth-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-germanynorth-vmss-germanynorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-germanynorth-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-germanynorth-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-germanynorth-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-germanynorth-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-germanynorth-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.208.134\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-norwaywest-vmss2\",\r\n \"name\": \"apim-norwaywest-vmss2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway West\",\r\n \"etag\": \"AAAAAAACi8Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T23:20:49.4916182Z\",\r\n \"gatewayUrl\": \"https://apim-norwaywest-vmss2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-norwaywest-vmss2-norwaywest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-norwaywest-vmss2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-norwaywest-vmss2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-norwaywest-vmss2.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-norwaywest-vmss2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-norwaywest-vmss2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.165.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-switzerlandwest-vmss\",\r\n \"name\": \"apim-switzerlandwest-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland West\",\r\n \"etag\": \"AAAAAAAEpqI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:25:15.6687061Z\",\r\n \"gatewayUrl\": \"https://apim-switzerlandwest-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-switzerlandwest-vmss-switzerlandwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-switzerlandwest-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-switzerlandwest-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-switzerlandwest-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-switzerlandwest-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-switzerlandwest-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.168.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-brazilsoutheast-vmss\",\r\n \"name\": \"apim-brazilsoutheast-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"AAAAAAABN/Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-23T23:24:40.0638446Z\",\r\n \"gatewayUrl\": \"https://apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-brazilsoutheast-vmss-brazilsoutheast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-brazilsoutheast-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-brazilsoutheast-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-brazilsoutheast-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-brazilsoutheast-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.40.33.4\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-jio-india-central\",\r\n \"name\": \"jitin-jio-india-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India Central\",\r\n \"etag\": \"AAAAAAAAX3Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-25T16:21:32.8139789Z\",\r\n \"gatewayUrl\": \"https://jitin-jio-india-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-jio-india-central-jioindiacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-jio-india-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-jio-india-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-jio-india-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-jio-india-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-jio-india-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.193.208.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-UAENorth\",\r\n \"name\": \"jijohn-UAENorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE North\",\r\n \"etag\": \"AAAAAAAGrSU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-22T13:55:02.5505865Z\",\r\n \"gatewayUrl\": \"https://jijohn-uaenorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-uaenorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AusCentral-Canary\",\r\n \"name\": \"AusCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAJZK0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:44:40.2114897Z\",\r\n \"gatewayUrl\": \"https://auscentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"auscentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mackotreder/providers/Microsoft.ApiManagement/service/mtreder20220501\",\r\n \"name\": \"mtreder20220501\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAAOlBc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mackotreder@microsoft.com\",\r\n \"publisherName\": \"trederix\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-05T11:17:58.0113683Z\",\r\n \"gatewayUrl\": \"https://mtreder20220501.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mtreder20220501-germanywestcentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mtreder20220501.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mtreder20220501.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mtreder20220501.management.azure-api.net\",\r\n \"scmUrl\": \"https://mtreder20220501.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mtreder20220501.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.79.210.26\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mackotreder@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-05T11:17:57.92639Z\",\r\n \"lastModifiedBy\": \"mackotreder@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-05T11:17:57.92639Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/GermanyWestCentral-Canary\",\r\n \"name\": \"GermanyWestCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAAN6Po=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:03:09.6147637Z\",\r\n \"gatewayUrl\": \"https://germanywestcentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"germanywestcentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jonorlu-dev/providers/Microsoft.ApiManagement/service/apim-jonorlu-con\",\r\n \"name\": \"apim-jonorlu-con\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzNs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jonorlu@microsoft.com\",\r\n \"publisherName\": \"apim-jonorlu-con\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-20T07:34:08.9223717Z\",\r\n \"gatewayUrl\": \"https://apim-jonorlu-con.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-jonorlu-con.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f8b7b4d1-a666-4a70-bf27-946256f4bf53\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jonorlu@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-20T07:34:08.8679799Z\",\r\n \"lastModifiedBy\": \"jonorlu@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-20T09:00:23.0456641Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-west\",\r\n \"name\": \"igo-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAN124=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-06T18:29:53.3821Z\",\r\n \"gatewayUrl\": \"https://igo-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-west-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.100.11\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"igo@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-07T17:15:34.7072651Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus-cons\",\r\n \"name\": \"egtest2-wcus-cons\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzPQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:13:12.0301258Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus-cons.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus-cons.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"0e60b5c1-920b-47fa-bab1-a1024f7da105\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-13T19:13:11.7683548Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-13T19:15:37.3080641Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/azapimpolicytest3\",\r\n \"name\": \"azapimpolicytest3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANtzg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"sdfssd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-30T21:24:20.0423014Z\",\r\n \"gatewayUrl\": \"https://azapimpolicytest3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://azapimpolicytest3-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://azapimpolicytest3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://azapimpolicytest3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://azapimpolicytest3.management.azure-api.net\",\r\n \"scmUrl\": \"https://azapimpolicytest3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"azapimpolicytest3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.223.135\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-30T21:24:19.8472042Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-30T21:24:19.8472042Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Central-US/providers/Microsoft.ApiManagement/service/apim-basic-capacity-westcentralus\",\r\n \"name\": \"apim-basic-capacity-westcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt98=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apicore@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-03T06:24:38.2948268Z\",\r\n \"gatewayUrl\": \"https://apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-basic-capacity-westcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-basic-capacity-westcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-basic-capacity-westcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-basic-capacity-westcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-basic-capacity-westcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.209.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-standard\",\r\n \"name\": \"seaki-westcentralus-standard\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt4A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:28:37.1432631Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-standard.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-standard-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-standard.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-standard.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-standard.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-standard.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-standard.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.195.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"206aff6e-dcee-4f9e-b196-72704d74f875\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:28:36.9321517Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:43:46.2042402Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-premium\",\r\n \"name\": \"seaki-westcentralus-premium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANuHg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:29:27.3037404Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-premium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-premium-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-premium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-premium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-premium.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-premium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-premium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.211.29\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fffb4b43-9390-4014-9a07-06ee1196ea7d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:29:27.1286347Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:46:04.9103692Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestCentralUS-Canary\",\r\n \"name\": \"WestCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzMI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-07T18:55:30.5556042Z\",\r\n \"gatewayUrl\": \"https://westcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus\",\r\n \"name\": \"egtest2-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANtzo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T03:08:55.5303136Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest2-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest2-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest2-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest2-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest2-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.239.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"522e156d-4ebe-40d5-9a1c-c0c9ca5fe806\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-13T03:08:55.3341193Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-13T04:11:42.0216045Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-cons-wcus\",\r\n \"name\": \"egtest-cons-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzOc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:05:54.0136418Z\",\r\n \"gatewayUrl\": \"https://egtest-cons-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-cons-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"10fba2c6-37c6-4149-ab1b-58b6c9b17f65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-12T23:34:37.6507573Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-test\",\r\n \"name\": \"seaki-westcentralus-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"appType\": \"test\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt8w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-16T16:39:17.5135079Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-test-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.185.225\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"136eefd7-9fa2-401a-bbd7-57fbd69a551f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-19T02:26:23.6152563Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T09:59:24.1178262Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/wcustest\",\r\n \"name\": \"wcustest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzMA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dfsdsf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-21T02:02:56.8112426Z\",\r\n \"gatewayUrl\": \"https://wcustest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wcustest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-21T02:02:56.6685082Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-21T02:02:56.6685082Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-developer\",\r\n \"name\": \"seaki-westcentralus-developer\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANtuk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:13:25.2987467Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-developer.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-developer-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-developer.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-developer.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-developer.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-developer.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-developer.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.105.114\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"06e9bc03-f3ee-4e80-ba08-1e303c70f3e7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:13:25.0788631Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:40:08.035272Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/delete2\",\r\n \"name\": \"delete2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt0g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"ms@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-09T20:31:58.7574951Z\",\r\n \"gatewayUrl\": \"https://delete2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete2-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete2.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.106.62\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tuanguye@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-09T20:31:58.5769593Z\",\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-09T20:31:58.5769593Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-wcus\",\r\n \"name\": \"egtest-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt2s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:06:37.3004386Z\",\r\n \"gatewayUrl\": \"https://egtest-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.210.123\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitinConsumption2020\",\r\n \"name\": \"jitinConsumption2020\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzOg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-30T07:39:30.0173932Z\",\r\n \"gatewayUrl\": \"https://jitinconsumption2020.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitinconsumption2020.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SwitzerlandNorth-Canary\",\r\n \"name\": \"SwitzerlandNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAAMsVs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:05:04.4040373Z\",\r\n \"gatewayUrl\": \"https://switzerlandnorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"switzerlandnorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ICMs/providers/Microsoft.ApiManagement/service/icm-tests\",\r\n \"name\": \"icm-tests\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAKl0M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mohaidar@microsoft.com\",\r\n \"publisherName\": \"APIM PG\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-19T11:51:00.4814439Z\",\r\n \"gatewayUrl\": \"https://icm-tests.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://icm-tests-westindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://icm-tests.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://icm-tests.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://icm-tests.management.azure-api.net\",\r\n \"scmUrl\": \"https://icm-tests.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"icm-tests.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.211.178.146\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mohaidar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-19T11:51:00.4361199Z\",\r\n \"lastModifiedBy\": \"mohaidar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-19T12:45:51.9519134Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestIndia-Canary\",\r\n \"name\": \"WestIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAKw1s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:53.8127048Z\",\r\n \"gatewayUrl\": \"https://westindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/KoreaCentral-Canary\",\r\n \"name\": \"KoreaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAKz9I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:39.9581781Z\",\r\n \"gatewayUrl\": \"https://koreacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"koreacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthAfricaNorth-Canary\",\r\n \"name\": \"SouthAfricaNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAMBUg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:45:41.6554527Z\",\r\n \"gatewayUrl\": \"https://southafricanorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southafricanorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKWest-Canary\",\r\n \"name\": \"UKWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAPaQE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:59:01.8019107Z\",\r\n \"gatewayUrl\": \"https://ukwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ukwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/BrazilSouth-Canary\",\r\n \"name\": \"BrazilSouth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAARrTc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:13.4420019Z\",\r\n \"gatewayUrl\": \"https://brazilsouth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"brazilsouth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-hkn-datatesting\",\r\n \"name\": \"jijohn-hkn-datatesting\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAANbGM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-03T01:31:50.1013434Z\",\r\n \"gatewayUrl\": \"https://jijohn-hkn-datatesting.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-hkn-datatesting-eastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-hkn-datatesting.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-hkn-datatesting.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-hkn-datatesting.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-hkn-datatesting.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-hkn-datatesting.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.187.161.21\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-03T01:31:49.3728612Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-03T01:31:49.3728612Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastAsia-Canary\",\r\n \"name\": \"EastAsia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAANkVc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:36.9340814Z\",\r\n \"gatewayUrl\": \"https://eastasia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastasia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthIndia-Canary\",\r\n \"name\": \"SouthIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAALd5g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:49:09.9271745Z\",\r\n \"gatewayUrl\": \"https://southindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaCentral-Canary\",\r\n \"name\": \"CanadaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAQUe8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:43.0182697Z\",\r\n \"gatewayUrl\": \"https://canadacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-11T19:23:50.8402652Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaEast-Canary\",\r\n \"name\": \"CanadaEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAAJ8kI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-29T15:09:19.077246Z\",\r\n \"gatewayUrl\": \"https://canadaeast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadaeast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/ASE-Canary\",\r\n \"name\": \"ASE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAARFAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:50:10.100096Z\",\r\n \"gatewayUrl\": \"https://ase-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ase-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanEast-Canary\",\r\n \"name\": \"JapanEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAAXVEw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:08.4035509Z\",\r\n \"gatewayUrl\": \"https://japaneast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japaneast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWUEk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWqTo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-12T20:29:50.7685833Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-northcentraltest-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-northcentraltest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-northcentraltest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-northcentraltest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-northcentraltest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.240.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-04\",\r\n \"name\": \"jijohn-consumption-04\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWURY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-01T03:05:35.5949176Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-04.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-04.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAV1qo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-06\",\r\n \"name\": \"jijohn-consumption-06\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWU+8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-16T17:22:24.5329871Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-06.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-06.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWURE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAVEhM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-forwarded-southeastasia-01\",\r\n \"name\": \"jijohn-forwarded-southeastasia-01\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAUsVc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-26T19:12:20.269709Z\",\r\n \"gatewayUrl\": \"https://jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-forwarded-southeastasia-01-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-forwarded-southeastasia-01.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-forwarded-southeastasia-01.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-forwarded-southeastasia-01.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-forwarded-southeastasia-01.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.35.216\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/seasia-test\",\r\n \"name\": \"seasia-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAUskg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"tdtdrtr\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-20T02:27:41.6012757Z\",\r\n \"gatewayUrl\": \"https://seasia-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seasia-test-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seasia-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seasia-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seasia-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seasia-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seasia-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.71.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fed-sea1\",\r\n \"name\": \"jitin-fed-sea1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAWVsc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-28T00:41:44.8922579Z\",\r\n \"gatewayUrl\": \"https://jitin-fed-sea1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fed-sea1-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fed-sea1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fed-sea1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fed-sea1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fed-sea1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fed-sea1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.76.158.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/msic2dtest\",\r\n \"name\": \"msic2dtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgJLg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-18T10:31:02.3767262Z\",\r\n \"gatewayUrl\": \"https://msic2dtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://msic2dtest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://msic2dtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://msic2dtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://msic2dtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://msic2dtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"msic2dtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.17.207\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/glebrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mitest\": {\r\n \"principalId\": \"16a25af3-e38f-46fb-a7a9-2206552fb4af\",\r\n \"clientId\": \"e42a5c25-1406-4683-90f8-30b42b84ef98\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/Devops-lrp\",\r\n \"name\": \"Devops-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAf5AY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-12T00:00:24.5450525Z\",\r\n \"gatewayUrl\": \"https://devops-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devops-lrp-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devops-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devops-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devops-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devops-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devops-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contoso.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-dev-keyvault.vault.azure.net/secrets/MsiTesting\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2023-01-16T10:34:25-08:00\",\r\n \"thumbprint\": \"0595C63B10FF3DF904D1E6FD5663DABDEC5E0FBB\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"KeyVault\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.162.162\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4cef27e1-7082-4a28-9772-5336e3f5cf7e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS2-Canary\",\r\n \"name\": \"WUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAe5dY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:12.1377274Z\",\r\n \"gatewayUrl\": \"https://wus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption\",\r\n \"name\": \"kjoshiconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAe6IE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-05T17:15:09.5924701Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"aa80091d-9ebb-43a7-a173-b83329bfb874\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnet\",\r\n \"name\": \"tehnoonr-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAejdw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-21T19:31:01.6390797Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"therazaportal.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:13:58-08:00\",\r\n \"thumbprint\": \"80D20AE4474CB5A3BBC0223DCBFE769AD7CF4AFE\",\r\n \"subject\": \"CN=therazaportal.apim.net, O=Microsoft, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"therazagateway.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2026-03-07T16:59:25-08:00\",\r\n \"thumbprint\": \"2CD4A000FF359E07B9CCD12D5FC938CD7ECB6D6E\",\r\n \"subject\": \"E=tehnoonr@hotmail.com, CN=therazagateway.apim.net, OU=TheRaza, O=TheRaza, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.115.192.52\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.Network/virtualNetworks/kjoshiextvnet/subnets/kjoshi-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.Network/publicIPAddresses/tehnoonr-public-latest\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tehnoonr@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-02T18:41:47.7475697Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-east-us-2-euap/providers/Microsoft.ApiManagement/service/setup-apim-westus2\",\r\n \"name\": \"setup-apim-westus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAelsE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-29T20:31:21.924559Z\",\r\n \"gatewayUrl\": \"https://setup-apim-westus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://setup-apim-westus2-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://setup-apim-westus2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://setup-apim-westus2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://setup-apim-westus2.management.azure-api.net\",\r\n \"scmUrl\": \"https://setup-apim-westus2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"setup-apim-westus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.91.93.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-07-29T20:31:21.6325933Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-07-29T20:31:21.6325933Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2testasync2\",\r\n \"name\": \"kjoshiwus2testasync2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgJP8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-02T03:13:15.7768813Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2testasync2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2testasync2-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2testasync2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2testasync2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2testasync2.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2testasync2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2testasync2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.137.97.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-02T03:13:15.6254954Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T03:13:15.6254954Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption2\",\r\n \"name\": \"kjoshiconsumption2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAe6tg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-07T21:52:02.2250806Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg\",\r\n \"name\": \"kjoshiwus2arg\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAfesE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-30T02:58:22.6286471Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2arg.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2arg-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2arg.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2arg.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2arg.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2arg.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2arg.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.121.1\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg/privateEndpointConnections/backendoutboundkjoshi\",\r\n \"name\": \"backendoutboundkjoshi\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/kjoshitest/providers/Microsoft.Network/privateEndpoints/backendoutboundkjoshi\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg/privateEndpointConnections/backendpe\",\r\n \"name\": \"backendpe\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/39fa9e43-8dfd-45d1-9ada-f14cabfed178/resourceGroups/kjoshipee2e-JPw1cIpOsVnVOWZKTG1opfszshqGY7RFpr3Vg4/providers/Microsoft.Network/privateEndpoints/backendpe\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve PE connetion from APIM.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg/privateEndpointConnections/tenantbackendpe\",\r\n \"name\": \"tenantbackendpe\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/39fa9e43-8dfd-45d1-9ada-f14cabfed178/resourceGroups/kjoshipee2e-JPw1cIpOsVnVOWZKTG1opfszshqGY7RFpr3Vg4/providers/Microsoft.Network/privateEndpoints/tenantbackendpe\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve PE connetion from APIM.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d0cb38b3-34f7-4e7a-84d7-5c66ef7cfed8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-30T02:58:21.8291788Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-04T03:07:31.6380393Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off\",\r\n \"name\": \"gleb-corr-off\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAffQ8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"foo\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:11:18.1464015Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.14.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest-vnet\",\r\n \"name\": \"vvktest-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAel70=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest-vnet\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-25T15:57:02.5153906Z\",\r\n \"gatewayUrl\": \"https://vvktest-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vvktest-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vvktest-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vvktest-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vvktest-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://vvktest-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.80.158.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/vvktest/providers/microsoft.network/virtualnetworks/vvktest/subnets/subnet-2\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.Network/publicIPAddresses/vvktest\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"vitaliik@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-25T15:57:02.2067169Z\",\r\n \"lastModifiedBy\": \"vitaliik@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-08T18:09:37.0116834Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test\",\r\n \"name\": \"alanfeng-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgVhY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T00:54:33.1727007Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alanfeng-test-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alanfeng-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alanfeng-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alanfeng-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://alanfeng-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.148.165.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"vatsapatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-08T22:59:30.2086539Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/andyhaverly/providers/Microsoft.ApiManagement/service/andyhaverly-basic\",\r\n \"name\": \"andyhaverly-basic\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgEIU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"andyhaverly@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-10T20:48:59.2923617Z\",\r\n \"gatewayUrl\": \"https://andyhaverly-basic.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://andyhaverly-basic-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://andyhaverly-basic.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://andyhaverly-basic.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://andyhaverly-basic.management.azure-api.net\",\r\n \"scmUrl\": \"https://andyhaverly-basic.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"andyhaverly-basic.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.69.173.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"andyhaverly@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-10T20:48:59.1482014Z\",\r\n \"lastModifiedBy\": \"andyhaverly@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T20:48:59.1482014Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-on\",\r\n \"name\": \"gleb-corr-on\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAeWFM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"asdasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:01:45.0345532Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-on.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-on-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-on.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-on.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-on.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-on.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-on.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.247.221.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest\",\r\n \"name\": \"vvktest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgCeA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-15T03:23:47.745102Z\",\r\n \"gatewayUrl\": \"https://vvktest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vvktest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vvktest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vvktest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vvktest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vvktest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.69.86.144\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"312e0870-d903-483b-9620-d74a499686f0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"vitaliik@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-15T03:23:47.6320751Z\",\r\n \"lastModifiedBy\": \"vitaliik@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T00:24:59.9096778Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vmss-vnet\",\r\n \"name\": \"tehnoonr-vmss-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"trere\": \"fdfd\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAel7c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-27T21:23:44.1115799Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vmss-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vmss-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vmss-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vmss-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vmss-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vmss-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vmss-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.82.14\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/mynewsubnet2\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.Network/publicIPAddresses/tehnoonr-publicip-westus2-new\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tehnoonr@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-13T19:42:34.4010528Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/gleb-ai/providers/Microsoft.ApiManagement/service/gleb-trace\",\r\n \"name\": \"gleb-trace\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAffPw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dfsdfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-16T19:32:41.6343295Z\",\r\n \"gatewayUrl\": \"https://gleb-trace.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-trace-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-trace.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-trace.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-trace.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-trace.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-trace.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.8.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/debugger/providers/Microsoft.ApiManagement/service/debugger\",\r\n \"name\": \"debugger\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mijiang\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAfmp4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-26T20:32:34.0546555Z\",\r\n \"gatewayUrl\": \"https://debugger.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://debugger-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://debugger.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://debugger.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://debugger.management.azure-api.net\",\r\n \"scmUrl\": \"https://debugger.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"debugger.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.183.42.48\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.ApiManagement/service/dapr-call\",\r\n \"name\": \"dapr-call\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mkim\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAek+g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-28T19:13:58.8059982Z\",\r\n \"gatewayUrl\": \"https://dapr-call.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dapr-call-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dapr-call.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dapr-call.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dapr-call.management.azure-api.net\",\r\n \"scmUrl\": \"https://dapr-call.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dapr-call.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.23.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2testasync\",\r\n \"name\": \"kjoshiwus2testasync\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAegCo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-02T03:12:56.0612854Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2testasync.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2testasync-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2testasync.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2testasync.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2testasync.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2testasync.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2testasync.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.99.136.84\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-02T03:12:55.9342176Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T03:12:55.9342176Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgP+Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-reserved-ip.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2test\",\r\n \"name\": \"kjoshiwus2test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAef3k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-02T03:07:06.5247717Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2test-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2test.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.149.19.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-02T03:07:05.6948749Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T03:07:05.6948749Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/femeji-rg/providers/Microsoft.ApiManagement/service/femeji-early-bits\",\r\n \"name\": \"femeji-early-bits\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAenL8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"femeji@microsoft.com\",\r\n \"publisherName\": \"femeji-early-bits\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-08T18:41:45.2243205Z\",\r\n \"gatewayUrl\": \"https://femeji-early-bits.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://femeji-early-bits-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://femeji-early-bits.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://femeji-early-bits.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://femeji-early-bits.management.azure-api.net\",\r\n \"scmUrl\": \"https://femeji-early-bits.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"femeji-early-bits.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.64.136.215\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"femeji@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-08T18:41:45.1403513Z\",\r\n \"lastModifiedBy\": \"femeji@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-08T18:41:45.1403513Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnetbadcert\",\r\n \"name\": \"tehnoonr-vnetbadcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAfx1o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-19T20:02:03.0283499Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnetbadcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnetbadcert-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnetbadcert.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnetbadcert.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnetbadcert.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnetbadcert.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnetbadcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.158.252.155\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/CloudServiceTest\",\r\n \"name\": \"CloudServiceTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAlvQ0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:56:15.4310419Z\",\r\n \"gatewayUrl\": \"https://cloudservicetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cloudservicetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cloudservicetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cloudservicetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cloudservicetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://cloudservicetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cloudservicetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.184.231\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/vscodetest3\",\r\n \"name\": \"vscodetest3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAmf6M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:37:34.6402046Z\",\r\n \"gatewayUrl\": \"https://vscodetest3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883\",\r\n \"name\": \"ps2883\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof0Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T08:43:34.064822Z\",\r\n \"gatewayUrl\": \"https://ps2883.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2883-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2883.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2883.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2883.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2883.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2883.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.244.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T08:43:33.9166428Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:43:33.9166428Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ContosoGroup02/providers/Microsoft.ApiManagement/service/ContosoApi2\",\r\n \"name\": \"ContosoApi2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAnX1s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T22:34:12.7640649Z\",\r\n \"gatewayUrl\": \"https://contosoapi2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://contosoapi2-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://contosoapi2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://contosoapi2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://contosoapi2.management.azure-api.net\",\r\n \"scmUrl\": \"https://contosoapi2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contosoapi2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.240.65\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/anan68/providers/Microsoft.ApiManagement/service/anan68-apim\",\r\n \"name\": \"anan68-apim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAm85o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"anandareddys@microsoft.com\",\r\n \"publisherName\": \"microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-24T17:13:29.0705455Z\",\r\n \"gatewayUrl\": \"https://anan68-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://anan68-apim-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://anan68-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://anan68-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://anan68-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://anan68-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"anan68-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.1.214\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-24T17:13:28.9585152Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-24T17:13:28.9585152Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-apim/providers/Microsoft.ApiManagement/service/tehnoonr-apim3\",\r\n \"name\": \"tehnoonr-apim3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAnxOU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T16:25:34.5489001Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-apim3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-apim3-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-apim3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-apim3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-apim3.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-apim3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-apim3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.198.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e67f9e1e-6763-4024-8ee1-720d667cb148\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUS-Canary\",\r\n \"name\": \"CUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAmgIE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:47:24.9248008Z\",\r\n \"gatewayUrl\": \"https://cus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/VscodeTest\",\r\n \"name\": \"VscodeTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAnNpM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:00:50.8875823Z\",\r\n \"gatewayUrl\": \"https://vscodetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vscodetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vscodetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vscodetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vscodetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vscodetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.73.40\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jbtests-rg/providers/Microsoft.ApiManagement/service/jbtests-ApiManagement\",\r\n \"name\": \"jbtests-ApiManagement\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAl/38=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"javierbo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-19T18:03:33.0240925Z\",\r\n \"gatewayUrl\": \"https://jbtests-apimanagement.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jbtests-apimanagement-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jbtests-apimanagement.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jbtests-apimanagement.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jbtests-apimanagement.management.azure-api.net\",\r\n \"scmUrl\": \"https://jbtests-apimanagement.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jbtests-apimanagement.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.86.36.183\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"javierbo@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-19T18:03:32.8839746Z\",\r\n \"lastModifiedBy\": \"javierbo@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-19T18:03:32.8839746Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976\",\r\n \"name\": \"ps4976\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof9E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T09:44:52.8608536Z\",\r\n \"gatewayUrl\": \"https://ps4976.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4976-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4976.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4976.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4976.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4976.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4976.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.21.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T09:44:52.826263Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T09:44:52.826263Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKS-Canary\",\r\n \"name\": \"UKS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAAh0M4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:47.9089467Z\",\r\n \"gatewayUrl\": \"https://uks-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uks-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-aueast\",\r\n \"name\": \"gleb-aueast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAclCo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"czxczxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-25T21:13:49.2851403Z\",\r\n \"gatewayUrl\": \"https://gleb-aueast.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-aueast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAdaUM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"freeCertAUEConsumption.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-09-03T16:59:59-07:00\",\r\n \"thumbprint\": \"E636E79B79386AC87886916E779805B1CA8750BA\",\r\n \"subject\": \"CN=freecertaueconsumption.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Managed\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-03T20:18:43.7460489Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanWest-Canary\",\r\n \"name\": \"JapanWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"etag\": \"AAAAAAAKTu8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T15:51:51.233468Z\",\r\n \"gatewayUrl\": \"https://japanwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japanwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/ogf\",\r\n \"name\": \"ogf\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqZ5I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-08T18:11:26.9902003Z\",\r\n \"gatewayUrl\": \"https://ogf.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.248.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-test\",\r\n \"name\": \"igo-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAr8I8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-19T18:40:24.5701371Z\",\r\n \"gatewayUrl\": \"https://igo-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.59.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"igo@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-13T20:43:13.3055918Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqP3M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohndiagnosticlogs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.64.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-d4qshnj7tuycgowxi2sx6cuh2h4gz44wmblo6mly6fg3ydywx76csqi7tukth/providers/Microsoft.ApiManagement/service/cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt\",\r\n \"name\": \"cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsnbM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:51:37.5936492Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.130.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e30578c5-317d-4153-bc5e-d32e705faae8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:51:36.9195743Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:51:36.9195743Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-vmss-test\",\r\n \"name\": \"jijohn-vmss-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqb7Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@msft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-19T01:16:45.8564989Z\",\r\n \"gatewayUrl\": \"https://jijohn-vmss-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-vmss-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-vmss-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-vmss-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-vmss-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-vmss-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-vmss-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.211.60\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.16.5.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.Network/virtualNetworks/vnet01/subnets/subnet-1\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-19T01:16:45.7101852Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-19T01:16:45.7101852Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/multiregiondisablesecondary\",\r\n \"name\": \"multiregiondisablesecondary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqkSc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T19:16:11.2793778Z\",\r\n \"gatewayUrl\": \"https://multiregiondisablesecondary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://multiregiondisablesecondary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://multiregiondisablesecondary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://multiregiondisablesecondary.management.azure-api.net\",\r\n \"scmUrl\": \"https://multiregiondisablesecondary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"multiregiondisablesecondary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.99.158\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"40.117.56.33\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArVW0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-e6liz7fjs3wguyx57sqxjdwqbfxots3uyewltemtfbujtxhwqnzayaejs7iyp/providers/Microsoft.ApiManagement/service/cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su\",\r\n \"name\": \"cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrlk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:37:01.4452569Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.247.146\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"598bce42-78c4-4e1f-a1d1-68565f0e9860\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:37:00.633521Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:37:00.633521Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-inittest\",\r\n \"name\": \"gleb-inittest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAru0M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dsfsdfsdfs\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-19T00:43:17.2463706Z\",\r\n \"gatewayUrl\": \"https://gleb-inittest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-inittest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-inittest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-inittest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-inittest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-inittest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.172.238\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.16.4.12\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [],\r\n \"publicIPAddresses\": [\r\n \"40.87.91.146\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.24.0.4\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Nico2/providers/Microsoft.Network/virtualNetworks/Nico-vnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-eastus-01.regional.azure-api.net\",\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/publicIPAddresses/east-us\",\r\n \"platformVersion\": \"stv2\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"e49076f0-829d-4af8-a0d3-3655f3e9161d\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3c23e6d8-0aaa-4af7-b4e4-68b8591df1ed\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"mohaidar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-24T09:09:06.778424Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test3\",\r\n \"name\": \"jitin-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArDcc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"asd@m.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:24:33.8034229Z\",\r\n \"gatewayUrl\": \"https://jitin-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.171.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\",\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqPsQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://aztest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.195.148\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n }\r\n },\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2036-06-28T08:37:53-07:00\",\r\n \"thumbprint\": \"C5091132E9ADF8AD3E33932AE60A5C8FA939E824\",\r\n \"subject\": \"CN=Cisco Umbrella Root CA, O=Cisco\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b681823-8edc-4e3e-84e4-4a5616a2f28b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"vitaliik@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-21T00:15:01.1818984Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-zrqrirgzktogs6coqf6yofyuhv4nqzynf5cyax2clix6kd6sf5zwgyekzsoy2/providers/Microsoft.ApiManagement/service/cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki\",\r\n \"name\": \"cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAskd0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T00:38:02.9332616Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.5.149\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a8afa9d1-1b29-4e20-a220-cac781f59959\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T00:38:02.066223Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T00:38:02.066223Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-fknqoauvkg6xcyj4qwujy6i6csiwbblkmek2idrba4twfta2t7p6imjg4iwun/providers/Microsoft.ApiManagement/service/cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy\",\r\n \"name\": \"cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrls=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:33:03.4800571Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.238.26.94\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"7ad9e8d2-d885-4027-86fc-8416499257f2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:33:02.6809808Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:33:02.6809808Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-fre7pftuev5eug3q3gqnog5wh4qi7muvrecwdowjm3ynx7gknfk3pohn2rg25/providers/Microsoft.ApiManagement/service/cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg\",\r\n \"name\": \"cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAs9Ns=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T01:20:28.8637052Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.157.3.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d8cae39c-7f44-48b1-b23e-5e177c3c416c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T01:20:27.946628Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T01:20:27.946628Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-qeorm74brjcb5m3eg4pktmujbqfmbwvhqvs522q5i65syt4ytpgdnkevkctwr/providers/Microsoft.ApiManagement/service/cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52\",\r\n \"name\": \"cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsncg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:56:36.490636Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.225.33.27\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1b644550-bba9-4b56-9b56-ba1cd2790d79\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:56:35.6955601Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:56:35.6955601Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-qxq6qtnqu234rp46owzvca76wsrpdpkss36l3nk57g4zoh34cl6ldfm4sqlzs/providers/Microsoft.ApiManagement/service/cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2\",\r\n \"name\": \"cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslTg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:57:58.6370484Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.88.181.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"afe0b715-6667-4a7b-b8d2-1b85eca5eca4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:57:57.6778802Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:57:57.6778802Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-jgdwdpx234exny3uy5cl2x4wnupvbhdlk4h6flhvfxq5xgdc4flar73jdgtsa/providers/Microsoft.ApiManagement/service/cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw\",\r\n \"name\": \"cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAskn8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T01:13:42.0252378Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.164.75\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"8a143b9a-231d-472c-9d6f-6f31fafceacd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T01:13:41.0962566Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T01:13:41.0962566Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test2\",\r\n \"name\": \"jitin-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArT6o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:34:55.8132257Z\",\r\n \"gatewayUrl\": \"https://jitin-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-jpoiw5jgref3xau7ghtkpmy3xoxw3q76zwe5fvp7row2kwozdqrr55lm4xi76/providers/Microsoft.ApiManagement/service/cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4\",\r\n \"name\": \"cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslTo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:52:56.7873072Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.157.0.186\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"851f5b0c-1188-402b-a23f-2c0e00bdec7e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:52:55.7777246Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:52:55.7777246Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-6wv3qhg7nlqdwy6qlagkctjtzx77gle7fuccple4aecr4jqnqfxl23vqbhnv7/providers/Microsoft.ApiManagement/service/cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2\",\r\n \"name\": \"cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsnas=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:51:36.5049766Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.176.127\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"67341146-2ece-4968-9187-ad1fa9956449\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:51:35.5902005Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:51:35.5902005Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-imi4zg5d2otk4w4adab5lbzrlzn2yo5cynnd3c6aawd46kfo6tuv67hqbhoxp/providers/Microsoft.ApiManagement/service/cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg\",\r\n \"name\": \"cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslT0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:57:57.218577Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.190.188.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"476a0244-1799-4be2-a7a7-2c7f3640fd45\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:57:56.4680929Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:57:56.4680929Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-3opisacnkuqamgk7dy3murskkusdbanb6phnhgd7oz7uqygzvlzi4yuch3qkk/providers/Microsoft.ApiManagement/service/cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x\",\r\n \"name\": \"cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAspC0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T01:28:34.4997878Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.162.253\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e1b78bfa-db48-4982-ad79-fb45b1cd6473\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T01:28:33.5214434Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T01:28:33.5214434Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqPsY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apimanagement-cors-proxy-df.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqPuQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devenv.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": [],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"a44deed2-da94-49f2-a0e2-16337bdc59fe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tomkerkhove@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-10T10:31:43.9983185Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-q6pcnzmrlkxasj2qjs5rugneajj2v2jlolbyem4kcbiy73u6rtmewekca2xf7/providers/Microsoft.ApiManagement/service/cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp\",\r\n \"name\": \"cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAspic=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T03:42:51.7246806Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.68.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"95b89516-b162-44d8-a777-c5e97c8e1b0a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T03:42:50.9396693Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T03:42:50.9396693Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-crgsdft3bdb6lr5y66pxp24fjez3d6kegdyzgm4nxsqk4b2l2llt2qfnpwfqd/providers/Microsoft.ApiManagement/service/cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4\",\r\n \"name\": \"cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsojM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T22:34:47.7347765Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.1.215\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"518bbcb6-2d44-4f68-b276-f67c2531602a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T22:34:46.7832405Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T22:34:46.7832405Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/cons2ded-0\",\r\n \"name\": \"cons2ded-0\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqiR4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdasa\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-01T01:37:36.7900101Z\",\r\n \"gatewayUrl\": \"https://cons2ded-0.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cons2ded-0-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cons2ded-0.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cons2ded-0.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cons2ded-0.management.azure-api.net\",\r\n \"scmUrl\": \"https://cons2ded-0.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cons2ded-0.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.75.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-01T01:37:36.7381681Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArRCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vatsapatel/providers/Microsoft.ApiManagement/service/vatsa-test\",\r\n \"name\": \"vatsa-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqihM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vatsapatel@microsoft.com\",\r\n \"publisherName\": \"vatsa-test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-02T23:59:21.1383489Z\",\r\n \"gatewayUrl\": \"https://vatsa-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vatsa-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vatsa-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vatsa-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vatsa-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://vatsa-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vatsa-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.43.246.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/AndyTest/providers/Microsoft.Network/virtualNetworks/AndyTest/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"vatsapatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-02T23:59:21.0726541Z\",\r\n \"lastModifiedBy\": \"vatsapatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-02T23:59:21.0726541Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArSLs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-nzfzvl43itgwhrllcrdnhgwgtfstdu53366teo53w6uxplgsyivsqycbadyke/providers/Microsoft.ApiManagement/service/cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct\",\r\n \"name\": \"cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsodM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T22:13:03.5146644Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.90.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4065881e-8a1f-4345-a639-92acbcd66bed\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T22:13:02.5140895Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T22:13:02.5140895Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-up3auitlcgpobphqiovy7anxxvd54j5e7po7soy4wfvielh7cl2h5x2dxlumo/providers/Microsoft.ApiManagement/service/cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav\",\r\n \"name\": \"cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAskqc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T01:19:26.7266062Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.16.192\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f39b06a1-4323-4793-a03d-a0fd3b61af2f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T01:19:25.8234763Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T01:19:25.8234763Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test2\",\r\n \"name\": \"alanfeng-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArUC0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@example.com\",\r\n \"publisherName\": \"Publisher\",\r\n \"notificationSenderEmail\": \"publisher@example.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-21T23:49:32.5193553Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimmonetization/providers/Microsoft.ApiManagement/service/alzaslonmonetization20110708\",\r\n \"name\": \"alzaslonmonetization20110708\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqaAM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:22:28.1527262Z\",\r\n \"gatewayUrl\": \"https://alzaslonmonetization20110708.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslonmonetization20110708-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslonmonetization20110708.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslonmonetization20110708.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslonmonetization20110708.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslonmonetization20110708.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslonmonetization20110708.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.250.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fc5c18d2-0309-4b38-8c2a-f548b5e06ee3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestAPIManage123\",\r\n \"name\": \"TestAPIManage123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsBYE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPI\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-11T14:24:14.6253855Z\",\r\n \"gatewayUrl\": \"https://testapimanage123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapimanage123-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapimanage123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapimanage123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapimanage123.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapimanage123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapimanage123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.7.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off2\",\r\n \"name\": \"gleb-corr-off2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAr8KU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dassdsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:58:27.2967081Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off2.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.252.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"54c1d67c-4a66-40e2-859c-eaf32dbd00ff\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-qvmex6iozruglhn6yliyknehd36os4mjmbxc2ouwstl2ir263q3yl5mexu42r/providers/Microsoft.ApiManagement/service/cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz\",\r\n \"name\": \"cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsnkU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T17:25:00.8963031Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.61.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f7de845e-a1cb-4e6d-b2ea-2aeffa62416e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T17:24:59.3017931Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T17:24:59.3017931Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-izhfbzyxp5bafmrlgplecngzygo5t4pfrxpzcjctcriq7jfpsew7yberpgneg/providers/Microsoft.ApiManagement/service/cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e\",\r\n \"name\": \"cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslT8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:52:53.2639684Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.234.29.5\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"53c72149-0f06-448c-9e75-d529986e5469\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:52:52.5732385Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:52:52.5732385Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-yfl63ymcoljpjxd2cqg6teurjtwwl46qbfzfoo6nv43tg3dxa7lbwk4v5y3k6/providers/Microsoft.ApiManagement/service/cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3\",\r\n \"name\": \"cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrk0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:29:48.0351291Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.86.226.69\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f0ad9d22-0b0d-4fc9-b7fd-bf15f2a37794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:29:47.1191171Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:29:47.1191171Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-57-outage/providers/Microsoft.ApiManagement/service/kjoshisncablecut\",\r\n \"name\": \"kjoshisncablecut\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsSBg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sfdasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-16T17:52:35.2856029Z\",\r\n \"gatewayUrl\": \"https://kjoshisncablecut.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisncablecut-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisncablecut.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisncablecut.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisncablecut.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisncablecut.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisncablecut.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.117.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14d2a59a-3ef8-4cf7-b783-66fa6d9ac26b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-w27gbhkof3zzm3k6psn4mxfnpnws4ma5ydwcjx7bpsrdo7otsczjt2qdojh3h/providers/Microsoft.ApiManagement/service/cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep\",\r\n \"name\": \"cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsniA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:56:33.5287739Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.249.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4967c7c7-ba8d-49b4-9c74-1cd90d9d2ccc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:56:32.5660407Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:56:32.5660407Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-jgv4h4y2v35jw3xc4enzgbqpqd4nnsud3y2732q24jn62qt2kki2qcafrdubw/providers/Microsoft.ApiManagement/service/cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm\",\r\n \"name\": \"cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrkc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:32:05.3958438Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.83.7.102\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2eae9d69-6503-4e6a-95bd-7c3bbf7ac1a3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:32:04.3582955Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:32:04.3582955Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArRRk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41128fb9-0565-4a21-ad64-ef9282afb49c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-nb4gze6lyks53rpvp4jdkfxaukzwzfksnb4hjo2wptftld734z6bkf5xdfgqw/providers/Microsoft.ApiManagement/service/cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7\",\r\n \"name\": \"cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAske4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T00:38:04.8421304Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.190.251.73\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d2d94145-bfcb-4b6a-a6df-6d33e8ab7e8e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T00:38:03.6298157Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T00:38:03.6298157Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAr8I0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/delete-me\",\r\n \"name\": \"delete-me\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArDbQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-02T20:10:40.2502073Z\",\r\n \"gatewayUrl\": \"https://delete-me.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete-me-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete-me.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete-me.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete-me.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete-me.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete-me.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.74.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshimanagedcert\",\r\n \"name\": \"kjoshimanagedcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArVSE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-10T00:20:52.5741824Z\",\r\n \"gatewayUrl\": \"https://kjoshimanagedcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshimanagedcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumptionmanagedcert.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-06-10T16:59:59-07:00\",\r\n \"thumbprint\": \"7EA080F67F9BC89379315CFC867A20481B737390\",\r\n \"subject\": \"CN=kjoshiconsumptionmanagedcert.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Managed\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-10T00:20:51.8316378Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-10T00:52:30.6581975Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-westus-digitalyuan-pre\",\r\n \"name\": \"jijohn-westus-digitalyuan-pre\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArUrw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-03T04:14:46.0810905Z\",\r\n \"gatewayUrl\": \"https://jijohn-westus-digitalyuan-pre.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-westus-digitalyuan-pre.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-03T04:14:45.938843Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-03T04:14:45.938843Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntestConsumption\",\r\n \"name\": \"tntestConsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArUj0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"atuannguyen1997@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-22T00:04:17.8294341Z\",\r\n \"gatewayUrl\": \"https://tntestconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntestconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"004f6096-d97a-4a99-9c09-7499ee36129a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"v-ssaiprasan@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-27T05:30:47.2883441Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest\",\r\n \"name\": \"tntest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"accountName\": \"azureapimanagement\",\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAs82A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-ssaiprasan@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-29T17:08:15.1230697Z\",\r\n \"gatewayUrl\": \"https://tntest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.216.130\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"52.190.63.153\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://tntest-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"40.122.115.152\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://tntest-centralus-01.regional.azure-api.net\",\r\n \"disableGateway\": false,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_3DES_EDE_CBC_SHA\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2021-11-25T14:51:47-08:00\",\r\n \"thumbprint\": \"4E8234312EC69245D1AE296C4882D46FB84076A3\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2017-03-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"83594bc4-2fc1-4a4b-892f-cf2a41db8e1b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-14T20:35:35.4180915Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/FranceCentral-Canary\",\r\n \"name\": \"FranceCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"France Central\",\r\n \"etag\": \"AAAAAAAORtU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:16:01.6505783Z\",\r\n \"gatewayUrl\": \"https://francecentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"francecentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"freeCertFranCenConsumption.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-09-03T16:59:59-07:00\",\r\n \"thumbprint\": \"68711837839AAE7F4FE053D88EE82C8009BCF01D\",\r\n \"subject\": \"CN=freecertfrancenconsumption.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Managed\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-03T18:27:13.9225026Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest1\",\r\n \"name\": \"tntest1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAczYQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"a@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-21T05:15:14.3715298Z\",\r\n \"gatewayUrl\": \"https://tntest1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest1.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.97.9.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:32:39.7098303Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v2\",\r\n \"name\": \"jijohn-isolated-prod-v2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHp0E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T20:41:11.6877505Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v2-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.ApiManagement/service/sfapim-jikang-testing\",\r\n \"name\": \"sfapim-jikang-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAb/oM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T01:25:32.9898807Z\",\r\n \"gatewayUrl\": \"https://sfapim-jikang-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sfapim-jikang-testing-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sfapim-jikang-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sfapim-jikang-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sfapim-jikang-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://sfapim-jikang-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sfapim-jikang-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.215.115.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.Network/virtualNetworks/jikang-test-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"subnetAddress\": \"10.0.1.0/24\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"658e1d98-0b1c-48fa-b1ef-21fb1efe1c83\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAeBAw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisnoutagescus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAcAoA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://accessibility.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"6a729ed5-af23-49c1-9ff5-56efddf1dcbc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthCentralUS-Canary\",\r\n \"name\": \"SouthCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAcVLE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:01:56.1912158Z\",\r\n \"gatewayUrl\": \"https://southcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v1\",\r\n \"name\": \"jijohn-isolated-prod-v1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHdzY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T00:35:51.4220489Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp\",\r\n \"name\": \"devportal-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAdpFk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"API management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-16T17:38:14.081027Z\",\r\n \"gatewayUrl\": \"https://devportal-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devportal-lrp-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devportal-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devportal-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devportal-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devportal-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devportal-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.240.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp/privateEndpointConnections/11819703-1708-42de-aa4d-2824dec2d412\",\r\n \"name\": \"11819703-1708-42de-aa4d-2824dec2d412\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/c1bc5dd7-ea97-469c-89fa-8f26624902fd/resourceGroups/privatehub-prod-sn01-Rg/providers/Microsoft.Network/privateEndpoints/11819703-1708-42de-aa4d-2824dec2d412\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Private link service from AFD\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5ad27f6-e2f1-48e2-a287-d96d6a2bc8d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Test-remote-debugging/providers/Microsoft.ApiManagement/service/bugbash-Galin\",\r\n \"name\": \"bugbash-Galin\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAh9/A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-17T18:10:51.6628173Z\",\r\n \"gatewayUrl\": \"https://bugbash-galin.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://bugbash-galin-eastus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://bugbash-galin.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://bugbash-galin.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://bugbash-galin.management.azure-api.net\",\r\n \"scmUrl\": \"https://bugbash-galin.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"bugbash-galin.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.252.118.227\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f80f1b1a-ccfa-45a2-b2ca-066069ac9808\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastUS2-Canary\",\r\n \"name\": \"EastUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAhJxY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-16T02:13:20.6966778Z\",\r\n \"gatewayUrl\": \"https://eastus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsueus2\",\r\n \"name\": \"kjoshiconsueus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAiLsM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T06:22:42.2073762Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsueus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsueus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T06:22:41.2454026Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T06:22:41.2454026Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ui-test-resources/providers/Microsoft.ApiManagement/service/uitest\",\r\n \"name\": \"uitest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPNuo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"uitest@apimuitest.onmicrosoft.com\",\r\n \"publisherName\": \"APIM UI Tests\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-16T14:53:14.5470049Z\",\r\n \"gatewayUrl\": \"https://uitest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://uitest-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://uitest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://uitest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://uitest.management.azure-api.net\",\r\n \"scmUrl\": \"https://uitest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uitest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.186.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshifrontdoor\",\r\n \"name\": \"kjoshifrontdoor\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPuY4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-06T08:43:12.1611412Z\",\r\n \"gatewayUrl\": \"https://kjoshifrontdoor.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshifrontdoor-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshifrontdoor.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshifrontdoor.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshifrontdoor.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshifrontdoor.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshifrontdoor.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.83.138.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-06T08:43:11.3112169Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-06T08:43:11.3112169Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/jikang-msi\",\r\n \"name\": \"jikang-msi\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jikang\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABVxvo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-14T22:42:31.4857913Z\",\r\n \"gatewayUrl\": \"https://jikang-msi.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jikang-msi-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jikang-msi.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jikang-msi.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jikang-msi.management.azure-api.net\",\r\n \"scmUrl\": \"https://jikang-msi.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jikang-msi.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.24.84\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"84e9ecc2-5001-4fe8-93e5-0842d3fa5096\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Mahsa-Container/providers/Microsoft.ApiManagement/service/Mahsa-APIM\",\r\n \"name\": \"Mahsa-APIM\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABTz8w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mhasanisadi@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-18T18:57:50.0244482Z\",\r\n \"gatewayUrl\": \"https://mahsa-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mahsa-apim-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mahsa-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mahsa-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mahsa-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://mahsa-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mahsa-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.81.12.249\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS-Canary\",\r\n \"name\": \"EUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQStA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:52.9254769Z\",\r\n \"gatewayUrl\": \"https://eus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ysharma_test/providers/Microsoft.ApiManagement/service/ys-test\",\r\n \"name\": \"ys-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQhdE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"yachnasharma@microsoft.com\",\r\n \"publisherName\": \"DevDiv\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-26T23:33:23.1766813Z\",\r\n \"gatewayUrl\": \"https://ys-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ys-test-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ys-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ys-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ys-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://ys-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ys-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.81.28.173\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2c79f011-68ec-41c8-ae8e-8569c3a44074\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"yachnasharma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-26T23:33:23.1224287Z\",\r\n \"lastModifiedBy\": \"yachnasharma@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-11T20:50:47.4648912Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieusvnet\",\r\n \"name\": \"kjoshieusvnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPuFk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-06T04:46:48.3632619Z\",\r\n \"gatewayUrl\": \"https://kjoshieusvnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieusvnet-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieusvnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshieusvnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieusvnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieusvnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieusvnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.124.111.5\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.16.5.197\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.Network/virtualNetworks/kjoshieusbackendvnet/subnets/apimsubnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c29592d3-c7c0-4b14-a6c8-2676d46b6df3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-06T04:46:45.5930299Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-06T04:46:45.5930299Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/andyhaverly/providers/Microsoft.ApiManagement/service/andyhaverly\",\r\n \"name\": \"andyhaverly\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABVkyo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"andyhaverly@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-10T20:38:34.2427032Z\",\r\n \"gatewayUrl\": \"https://andyhaverly.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://andyhaverly-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://andyhaverly.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://andyhaverly.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://andyhaverly.management.azure-api.net\",\r\n \"scmUrl\": \"https://andyhaverly.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"andyhaverly.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.234.163.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"andyhaverly@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-10T20:38:33.9312396Z\",\r\n \"lastModifiedBy\": \"andyhaverly@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T20:38:33.9312396Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieus\",\r\n \"name\": \"kjoshieus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQRyI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-28T17:13:59.7510684Z\",\r\n \"gatewayUrl\": \"https://kjoshieus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-28T17:13:58.7613819Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-28T17:13:58.7613819Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test-consumption\",\r\n \"name\": \"alanfeng-test-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQXPk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T01:07:26.9020978Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABUVYw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/andyhaverly/providers/Microsoft.ApiManagement/service/apim-msi\",\r\n \"name\": \"apim-msi\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPoqo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"andyhaverly@microsoft.com\",\r\n \"publisherName\": \"sand\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-01T22:52:11.2941474Z\",\r\n \"gatewayUrl\": \"https://apim-msi.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-msi-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-msi.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-msi.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-msi.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-msi.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-msi.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.224.73.236\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"90aa239c-1e48-404e-924a-48c1c4e02f92\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"andyhaverly@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-01T22:52:11.0221317Z\",\r\n \"lastModifiedBy\": \"andyhaverly@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-24T20:09:27.2037354Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test-consumption2\",\r\n \"name\": \"alanfeng-test-consumption2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQYS0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-12T04:15:57.1601989Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test-consumption2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test-consumption2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"alanfeng@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-12T04:15:57.0433937Z\",\r\n \"lastModifiedBy\": \"alanfeng@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-12T04:15:57.0433937Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/APIM_OGF/providers/Microsoft.ApiManagement/service/ogftest123\",\r\n \"name\": \"ogftest123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQAG4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-ssaiprasan@microsoft.com\",\r\n \"publisherName\": \"test78\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T10:14:13.7358898Z\",\r\n \"gatewayUrl\": \"https://ogftest123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogftest123-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogftest123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogftest123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogftest123.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogftest123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogftest123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.164.27\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4a2500a6-1273-42bf-a6ad-05272ee561ef\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/scfitzgeAPIM/providers/Microsoft.ApiManagement/service/apitester3000\",\r\n \"name\": \"apitester3000\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABVIII=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"scfitzge@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-05T20:30:06.410739Z\",\r\n \"gatewayUrl\": \"https://apitester3000.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apitester3000-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apitester3000.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apitester3000.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apitester3000.management.azure-api.net\",\r\n \"scmUrl\": \"https://apitester3000.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apitester3000.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.85.173.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/wpooleyrg/providers/Microsoft.ApiManagement/service/wpooleyapim\",\r\n \"name\": \"wpooleyapim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABP1Ww=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"wpooley@microsoft.com\",\r\n \"publisherName\": \"William Pooley\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-13T17:52:07.593036Z\",\r\n \"gatewayUrl\": \"https://wpooleyapim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://wpooleyapim-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://wpooleyapim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://wpooleyapim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://wpooleyapim.management.azure-api.net\",\r\n \"scmUrl\": \"https://wpooleyapim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wpooleyapim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.119.124.128\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"wpooley@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-13T17:52:07.5323658Z\",\r\n \"lastModifiedBy\": \"wpooley@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-13T17:52:07.5323658Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAy2eg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\",\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAy2HI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jsorohova_test/providers/Microsoft.ApiManagement/service/jsorohova-apitest\",\r\n \"name\": \"jsorohova-apitest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAyxDM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jsorohova@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-12T15:22:26.1985093Z\",\r\n \"gatewayUrl\": \"https://jsorohova-apitest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jsorohova-apitest-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jsorohova-apitest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jsorohova-apitest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jsorohova-apitest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jsorohova-apitest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jsorohova-apitest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.82.251.95\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jsorohova@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-12T15:22:26.1451755Z\",\r\n \"lastModifiedBy\": \"jsorohova@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-15T15:47:39.3241653Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mizolota-testing/providers/Microsoft.ApiManagement/service/mizolota-testing\",\r\n \"name\": \"mizolota-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAyJG4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mizolota@microsoft.com\",\r\n \"publisherName\": \"mizolota\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-26T08:52:09.6939146Z\",\r\n \"gatewayUrl\": \"https://mizolota-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mizolota-testing-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mizolota-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mizolota-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mizolota-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://mizolota-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mizolota-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.105.83.137\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mizolota@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-26T08:52:09.6938125Z\",\r\n \"lastModifiedBy\": \"mizolota@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-26T08:52:09.6938125Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fwd-north-europe\",\r\n \"name\": \"jitin-fwd-north-europe\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAA0lNg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T00:58:18.8388979Z\",\r\n \"gatewayUrl\": \"https://jitin-fwd-north-europe.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fwd-north-europe-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fwd-north-europe.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fwd-north-europe.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fwd-north-europe.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fwd-north-europe.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fwd-north-europe.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.164.120.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/harun-dev/providers/Microsoft.ApiManagement/service/harun-apim-dev\",\r\n \"name\": \"harun-apim-dev\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACOHIA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"harunheybet@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-03T08:42:03.4416807Z\",\r\n \"gatewayUrl\": \"https://harun-apim-dev.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://harun-apim-dev-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://harun-apim-dev.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://harun-apim-dev.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://harun-apim-dev.management.azure-api.net\",\r\n \"scmUrl\": \"https://harun-apim-dev.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"harun-apim-dev.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.14.72\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"harunheybet@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-03T08:42:03.3490662Z\",\r\n \"lastModifiedBy\": \"harunheybet@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-03T08:42:03.3490662Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACPkKs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/dmkorolev-test/providers/Microsoft.ApiManagement/service/dmkorolev-APIM-test\",\r\n \"name\": \"dmkorolev-APIM-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACU9Nk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"dmkorolev@microsoft.com\",\r\n \"publisherName\": \"dmkorolev-test-company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-02T11:19:43.421632Z\",\r\n \"gatewayUrl\": \"https://dmkorolev-apim-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dmkorolev-apim-test-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dmkorolev-apim-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dmkorolev-apim-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dmkorolev-apim-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://dmkorolev-apim-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dmkorolev-apim-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.23.72.135\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"dmkorolev@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-02T11:19:43.4066847Z\",\r\n \"lastModifiedBy\": \"dmkorolev@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-02T11:19:43.4066847Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/corrtest\",\r\n \"name\": \"corrtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACRnb8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T05:32:44.2623295Z\",\r\n \"gatewayUrl\": \"https://corrtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://corrtest-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://corrtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://corrtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://corrtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://corrtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"corrtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.63.98.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/rmielowski/providers/Microsoft.ApiManagement/service/rmielowski-test\",\r\n \"name\": \"rmielowski-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACOHHQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rmielowski@microsoft.com\",\r\n \"publisherName\": \"apim-dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-03T10:45:03.8932789Z\",\r\n \"gatewayUrl\": \"https://rmielowski-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rmielowski-test-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rmielowski-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rmielowski-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rmielowski-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://rmielowski-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rmielowski-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.136.83.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"rmielowski@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-03T10:45:03.8756501Z\",\r\n \"lastModifiedBy\": \"rmielowski@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-03T10:45:03.8756501Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACMou4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vpnpremium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://samir-msi-keyvault.vault.azure.net/secrets/msicertificate\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-12-18T03:11:47-08:00\",\r\n \"thumbprint\": \"9833D531D7A45C565766F2A85908BD3692E0BD3F\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"KeyVault\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"20.123.33.179\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.Network/virtualNetworks/vpn-premium-ne/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-northeurope-01.regional.azure-api.net\",\r\n \"disableGateway\": false,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ca1d33f7-3cf9-42ec-b3e9-d526a1ee953a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"sasolank@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T20:04:00.606115Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jmach/providers/Microsoft.ApiManagement/service/apim-resource-jmach\",\r\n \"name\": \"apim-resource-jmach\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACODyo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"janmach1@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-18T13:26:09.53742Z\",\r\n \"gatewayUrl\": \"https://apim-resource-jmach.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-resource-jmach-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-resource-jmach.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-resource-jmach.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-resource-jmach.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-resource-jmach.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-resource-jmach.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.54.235.228\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"janmach1@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-18T13:26:09.4895177Z\",\r\n \"lastModifiedBy\": \"janmach1@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-18T13:26:09.4895177Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/carlos-test/providers/Microsoft.ApiManagement/service/carlos-test\",\r\n \"name\": \"carlos-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACN9aI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"carlosperez@microsoft.com\",\r\n \"publisherName\": \"carlos-test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-06T18:45:36.7986418Z\",\r\n \"gatewayUrl\": \"https://carlos-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://carlos-test-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://carlos-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://carlos-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://carlos-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://carlos-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"carlos-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.93.201.228\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"carlosperez@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-06T18:45:36.7590825Z\",\r\n \"lastModifiedBy\": \"carlosperez@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-06T18:45:36.7590825Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/test-fwd-westeurope\",\r\n \"name\": \"test-fwd-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACWSNE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T01:01:10.5192286Z\",\r\n \"gatewayUrl\": \"https://test-fwd-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://test-fwd-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://test-fwd-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://test-fwd-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://test-fwd-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://test-fwd-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test-fwd-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.30.219\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/haidar/providers/Microsoft.ApiManagement/service/websockettest\",\r\n \"name\": \"websockettest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACUoe0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mohaidar@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-14T11:24:17.544106Z\",\r\n \"gatewayUrl\": \"https://websockettest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://websockettest-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://websockettest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://websockettest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://websockettest.management.azure-api.net\",\r\n \"scmUrl\": \"https://websockettest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"websockettest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.23.50.218\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mohaidar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-14T11:24:17.5202006Z\",\r\n \"lastModifiedBy\": \"mohaidar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-14T11:24:17.5202006Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-sandbox-tomkerkhove-we/providers/Microsoft.ApiManagement/service/apim-sandbox-tomkerkhove-global-api-gateway\",\r\n \"name\": \"apim-sandbox-tomkerkhove-global-api-gateway\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Location\": \"Cloud\",\r\n \"Area\": \"APIs & API Gateway\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACT8hk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tomkerkhove@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-03T12:58:44.594806Z\",\r\n \"gatewayUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway-we-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-sandbox-tomkerkhove-global-api-gateway.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.105.202.177\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1dcc505f-3394-4307-94a8-dade9f2b6e82\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tomkerkhove@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-03T12:58:43.7546124Z\",\r\n \"lastModifiedBy\": \"tomkerkhove@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T07:09:36.7340786Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiweu\",\r\n \"name\": \"kjoshiweu\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACRbUw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-18T03:44:38.4481085Z\",\r\n \"gatewayUrl\": \"https://kjoshiweu.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiweu-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiweu.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiweu.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiweu.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiweu.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiweu.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.93.232.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiweu/privateEndpointConnections/kjoshiinboundPE\",\r\n \"name\": \"kjoshiinboundPE\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.Network/privateEndpoints/kjoshiinboundPE\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"89c2b6c9-2e77-4b74-8ef6-09e2e093309f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-18T03:44:34.8541834Z\",\r\n \"lastModifiedBy\": \"sasolank@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-18T18:16:41.734013Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiweuportal\",\r\n \"name\": \"kjoshiweuportal\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACQLek=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-18T03:54:08.2413401Z\",\r\n \"gatewayUrl\": \"https://kjoshiweuportal.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiweuportal-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiweuportal.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiweuportal.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiweuportal.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiweuportal.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiweuportal.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.103.144.21\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"af1f0d85-5995-4912-863d-4842ebbaa4f2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-18T03:54:05.8178939Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-18T03:54:05.8178939Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-oss/providers/Microsoft.ApiManagement/service/apim-oss\",\r\n \"name\": \"apim-oss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACU+qc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tomkerkhove@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-16T14:46:05.0678198Z\",\r\n \"gatewayUrl\": \"https://apim-oss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-oss-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-oss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-oss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-oss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-oss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-oss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.145.184.132\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tomkerkhove@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-16T14:46:05.0506905Z\",\r\n \"lastModifiedBy\": \"tomkerkhove@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-16T14:46:05.0506905Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/harun-apim\",\r\n \"name\": \"harun-apim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACU8v8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"harunheybet@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-06T14:43:48.8100482Z\",\r\n \"gatewayUrl\": \"https://harun-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://harun-apim-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://harun-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://harun-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://harun-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://harun-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"harun-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.103.72.92\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"harunheybet@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-06T14:43:48.2438636Z\",\r\n \"lastModifiedBy\": \"harunheybet@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-06T14:43:48.2438636Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cmalin/providers/Microsoft.ApiManagement/service/cmalin\",\r\n \"name\": \"cmalin\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACOFaY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"malincrist@microsoft.com\",\r\n \"publisherName\": \"microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-20T13:29:52.3859816Z\",\r\n \"gatewayUrl\": \"https://cmalin.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cmalin-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cmalin.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cmalin.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cmalin.management.azure-api.net\",\r\n \"scmUrl\": \"https://cmalin.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cmalin.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.73.36.217\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"malincrist@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-20T13:29:52.369527Z\",\r\n \"lastModifiedBy\": \"malincrist@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-20T13:29:52.369527Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-usw3-az\",\r\n \"name\": \"jijohn-usw3-az\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 3\",\r\n \"etag\": \"AAAAAAACeVo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-10T17:20:52.7775395Z\",\r\n \"gatewayUrl\": \"https://jijohn-usw3-az.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-usw3-az-westus3-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-usw3-az.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-usw3-az.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-usw3-az.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-usw3-az.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-usw3-az.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.150.251.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 4\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-jio-india-central\",\r\n \"name\": \"jitin-jio-india-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India Central\",\r\n \"etag\": \"AAAAAAAB8D0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-25T16:21:32.8139789Z\",\r\n \"gatewayUrl\": \"https://jitin-jio-india-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-jio-india-central-jioindiacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-jio-india-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-jio-india-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-jio-india-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-jio-india-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-jio-india-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.193.208.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-jio-india-west\",\r\n \"name\": \"jijohn-jio-india-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"AAAAAAABwmo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-24T20:46:56.3060919Z\",\r\n \"gatewayUrl\": \"https://jijohn-jio-india-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-jio-india-west-jioindiawest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-jio-india-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-jio-india-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-jio-india-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-jio-india-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-jio-india-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.64.18.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-test\",\r\n \"name\": \"jijohn-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"AAAAAAAA2lg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijoh@gmail.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-22T23:06:42.0693752Z\",\r\n \"gatewayUrl\": \"https://jijohn-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-test-swedencentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.12.128.16\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-22T23:06:41.5245485Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-22T23:06:41.5245485Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-australiacentral2-vmss-test3\",\r\n \"name\": \"apim-australiacentral2-vmss-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAHabo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-26T22:18:09.8509396Z\",\r\n \"gatewayUrl\": \"https://apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-australiacentral2-vmss-test3-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-australiacentral2-vmss-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-australiacentral2-vmss-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-australiacentral2-vmss-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-australiacentral2-vmss-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.66.131\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-cbr2\",\r\n \"name\": \"jitin-cbr2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAHZtM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-17T22:22:26.3793973Z\",\r\n \"gatewayUrl\": \"https://jitin-cbr2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-cbr2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-cbr2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-cbr2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-cbr2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-cbr2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-cbr2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.71.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AustraliaCentral2-Canary\",\r\n \"name\": \"AustraliaCentral2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAHiVo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:01:59.2396648Z\",\r\n \"gatewayUrl\": \"https://australiacentral2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"australiacentral2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieuapzrs\",\r\n \"name\": \"kjoshieuapzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZrk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-01-27T03:09:46.1687334Z\",\r\n \"gatewayUrl\": \"https://kjoshieuapzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieuapzrs-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieuapzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshieuapzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieuapzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieuapzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieuapzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.79.113.1\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/acttest\",\r\n \"name\": \"acttest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"testtag\": \"zzz\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZtM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"hyh76yh7hyh\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-20T18:05:23.0669881Z\",\r\n \"gatewayUrl\": \"https://acttest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://acttest-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://acttest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://acttest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://acttest.management.azure-api.net\",\r\n \"scmUrl\": \"https://acttest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"acttest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.145.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-20T18:05:22.5537339Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-20T18:05:22.5537339Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-az-drill-test/providers/Microsoft.ApiManagement/service/apim-drill-service-1\",\r\n \"name\": \"apim-drill-service-1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"drill\",\r\n \"tag2\": \"apim\",\r\n \"tag3\": \"canary\",\r\n \"tag_test\": \"Drill1\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZ20=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-15T06:24:29.2669104Z\",\r\n \"gatewayUrl\": \"https://apim-drill-service-1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-drill-service-1-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-drill-service-1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-drill-service-1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-drill-service-1.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-drill-service-1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-drill-service-1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.253.229.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 3\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-10-15T06:24:28.4020326Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-10-15T06:24:28.4020326Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-euap-test2\",\r\n \"name\": \"seaki-euap-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZwE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T21:39:09.8380753Z\",\r\n \"gatewayUrl\": \"https://seaki-euap-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-euap-test2-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-euap-test2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-euap-test2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-euap-test2.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-euap-test2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-euap-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.39.29.210\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T21:39:09.2039331Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-18T21:39:09.2039331Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS2EUAP-Canary\",\r\n \"name\": \"EUS2EUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAQCLY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:13.9169127Z\",\r\n \"gatewayUrl\": \"https://eus2euap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus2euap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-regression-test\",\r\n \"name\": \"jijohn-regression-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAXsDM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijo@emc.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-30T01:55:43.298889Z\",\r\n \"gatewayUrl\": \"https://jijohn-regression-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-regression-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-30T01:55:43.2121449Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-30T01:55:43.2121449Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZaiM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-26T22:17:08.4631999Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.233.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"93650c54-165e-4bf5-9cd0-1ffef301d6ab\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-07-26T22:17:08.2005563Z\",\r\n \"lastModifiedBy\": \"jikang@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-26T23:56:57.8452684Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest\",\r\n \"name\": \"glebegtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZag8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"xcvxcvxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:12:14.2339542Z\",\r\n \"gatewayUrl\": \"https://glebegtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebegtest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebegtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://glebegtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebegtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebegtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebegtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.229.177\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest/privateEndpointConnections/samirPe14connection\",\r\n \"name\": \"samirPe14connection\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/gleb-manual-10272021\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest/privateEndpointConnections/manualapprovePe1connection\",\r\n \"name\": \"manualapprovePe1connection\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/samir-pedemo2-manualapprove\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest/privateEndpointConnections/manualRejectPe3connection\",\r\n \"name\": \"manualRejectPe3connection\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/samir-pedemo2-manualreject2\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Rejected\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"5e9956fa-2ed0-4a83-82d8-d277a37b867b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-08T22:12:14.0629352Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-08T16:09:56.6757111Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUSEUAP-Canary\",\r\n \"name\": \"CUSEUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAXsFM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:40:38.7929014Z\",\r\n \"gatewayUrl\": \"https://cuseuap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cuseuap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6203f1ba-72eb-4a6d-a878-c914fa25b5a4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap\",\r\n \"name\": \"tntest-centraluseuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZagc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"abc@gmail.com\",\r\n \"publisherName\": \"abc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-21T06:11:29.4006558Z\",\r\n \"gatewayUrl\": \"https://tntest-centraluseuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-centraluseuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest-centraluseuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest-centraluseuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest-centraluseuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest-centraluseuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest-centraluseuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.232.35\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/pl2\",\r\n \"name\": \"pl2\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/privateEndpoints/pl2\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/pl3\",\r\n \"name\": \"pl3\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/privateEndpoints/pl3\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"None5\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/pl4\",\r\n \"name\": \"pl4\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/privateEndpoints/pl4\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/ton-please-approve\",\r\n \"name\": \"ton-please-approve\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/tony-test-manualapproval5\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tuanguye@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-21T06:11:29.0901472Z\",\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-21T06:11:29.0901472Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-euapcentral-test\",\r\n \"name\": \"seaki-euapcentral-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZakU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:12:25.3013938Z\",\r\n \"gatewayUrl\": \"https://seaki-euapcentral-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-euapcentral-test-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-euapcentral-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-euapcentral-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-euapcentral-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-euapcentral-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-euapcentral-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.236.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:12:25.1482083Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-18T23:12:25.1482083Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.ApiManagement/service/jikang-canary\",\r\n \"name\": \"jikang-canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZaek=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@Microsoft.com\",\r\n \"publisherName\": \"Microsoft Internal\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-22T21:32:58.2890568Z\",\r\n \"gatewayUrl\": \"https://jikang-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jikang-canary-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jikang-canary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jikang-canary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jikang-canary.management.azure-api.net\",\r\n \"scmUrl\": \"https://jikang-canary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jikang-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.182.246\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.31.0.7\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/internal-vnet/providers/Microsoft.Network/virtualNetworks/apimvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"397390e6-2107-4d52-97ae-fb8c3a007202\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-22T21:32:55.1666835Z\",\r\n \"lastModifiedBy\": \"jikang@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-04T23:08:57.230546Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/alzasloneuap06\",\r\n \"name\": \"alzasloneuap06\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZahM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-06T02:52:09.4015422Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap06.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap06-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap06.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap06.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap06.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap06.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap06.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.46.29.80\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"alzaslon@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-06T02:52:09.2518158Z\",\r\n \"lastModifiedBy\": \"alzaslon@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-06T02:52:09.2518158Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/freeCert-canary-test\",\r\n \"name\": \"freeCert-canary-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZaf0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"zhonren@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-24T22:40:21.7588233Z\",\r\n \"gatewayUrl\": \"https://freecert-canary-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://freecert-canary-test-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://freecert-canary-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://freecert-canary-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://freecert-canary-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://freecert-canary-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"freecert-canary-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.236.81\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2d820efd-d633-4f05-8b53-73f0be9a7367\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"zhonren@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-24T22:40:21.5111609Z\",\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-14T23:24:48.6718143Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-uae-central\",\r\n \"name\": \"jitin-uae-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAEVdw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-12T18:44:51.9105707Z\",\r\n \"gatewayUrl\": \"https://jitin-uae-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-uae-central-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-uae-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-uae-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-uae-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-uae-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-uae-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.64.181\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-uaecentral-vmss\",\r\n \"name\": \"apim-uaecentral-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAEUtQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:40:25.8886265Z\",\r\n \"gatewayUrl\": \"https://apim-uaecentral-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-uaecentral-vmss-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-uaecentral-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-uaecentral-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-uaecentral-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-uaecentral-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-uaecentral-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.70.76\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-germanynorth-vmss\",\r\n \"name\": \"apim-germanynorth-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany North\",\r\n \"etag\": \"AAAAAAAD7OM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T01:37:08.6104095Z\",\r\n \"gatewayUrl\": \"https://apim-germanynorth-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-germanynorth-vmss-germanynorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-germanynorth-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-germanynorth-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-germanynorth-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-germanynorth-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-germanynorth-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.208.134\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-norwaywest-vmss2\",\r\n \"name\": \"apim-norwaywest-vmss2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway West\",\r\n \"etag\": \"AAAAAAADwPw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T23:20:49.4916182Z\",\r\n \"gatewayUrl\": \"https://apim-norwaywest-vmss2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-norwaywest-vmss2-norwaywest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-norwaywest-vmss2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-norwaywest-vmss2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-norwaywest-vmss2.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-norwaywest-vmss2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-norwaywest-vmss2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.165.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-switzerlandwest-vmss\",\r\n \"name\": \"apim-switzerlandwest-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland West\",\r\n \"etag\": \"AAAAAAAGIh4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:25:15.6687061Z\",\r\n \"gatewayUrl\": \"https://apim-switzerlandwest-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-switzerlandwest-vmss-switzerlandwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-switzerlandwest-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-switzerlandwest-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-switzerlandwest-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-switzerlandwest-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-switzerlandwest-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.168.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-brazilsoutheast-vmss\",\r\n \"name\": \"apim-brazilsoutheast-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"AAAAAAAClFA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-23T23:24:40.0638446Z\",\r\n \"gatewayUrl\": \"https://apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-brazilsoutheast-vmss-brazilsoutheast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-brazilsoutheast-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-brazilsoutheast-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-brazilsoutheast-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-brazilsoutheast-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.40.33.4\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90473252-fe89-4b59-bfad-f199b06d1194"
+ "b1e05e66-323c-4dc5-8efc-101ca1369ad8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8725,59 +8159,60 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "63fdb6f6-a5b5-4a3d-87e7-64070b43c103",
- "b39af52b-9b16-46a4-b18a-4d45ba8eba39",
- "9b7cf9b0-b3b1-4cfe-a7b3-ff476d7426c2",
- "e455d928-d3b0-4af6-86e0-c66db2d46589",
- "0406e2eb-ca92-4a05-99c0-56a499e159c5",
- "fd48bfea-08c2-4541-9cd2-db8ecb4f5b21",
- "bc922012-4c29-42bb-a528-c03e9e9b861e",
- "2a796be9-7d5f-4f4e-8db8-8e528ab056e4",
- "b2445847-9c36-4156-8461-0d05d4a0a43a",
- "a4439403-3ab9-4074-8d4c-7c1dfd1d169d",
- "a3edd60c-c9a8-4311-99d0-d1fc9f316f69",
- "0362ec13-2fce-46fd-8095-41eb74258528",
- "b8618017-fcdf-41fc-891f-295f26e25f8b",
- "ab130ab9-fab9-4d8b-9bdc-7285ca975105",
- "1f478cce-f9b8-4a93-84ee-4f733492e4cc",
- "20017083-6048-4f1e-806a-c8e8d220e3cb",
- "e761b7d2-a485-463d-b39b-3c12159f6f53",
- "4ed3895c-0578-4bb4-98b2-d581c258b287",
- "83954570-61ed-4854-9657-dda4ce3be6f1",
- "219c1dc2-3592-40c0-a6a6-7da1e94ba01f",
- "e1eb67e0-ffcd-4ec0-9d9e-33f9276e58f5",
- "76786bed-8d6e-41a2-8a84-0746a79464e5",
- "4a0927dc-a11d-417f-882a-67feccbf30d6",
- "318384f7-b6f7-44d3-ab2c-899972777d97",
- "299f3720-0574-41c9-ba7d-dffa9d8c0136",
- "7e1af2dc-61d5-4589-aa7e-75fc44ab01ad",
- "1675394e-ce1a-41e6-bce2-b5b4eec7e444",
- "38163739-ea7e-4796-a90d-5eb6ff0eb93d",
- "d81a0b3a-fcaa-4cf6-9634-f973a60b37a2",
- "567e422d-9b11-4231-b40e-b510b6afd843",
- "8cb12c23-88ae-4cb1-a89e-47bc87f41672",
- "d07c6068-f3c7-4029-9edd-fa1b23ff38db",
- "36e1ed29-b42b-4482-b6a2-e35cbd6cf3b1",
- "ef93ce25-24a9-403d-ad91-e445ee44a865",
- "93f72487-fbff-4a9d-80d4-8750f009d427",
- "1c78a194-4ba5-47fd-ae06-149caabb5e9a",
- "75f1d617-7300-4c73-9964-9c4979d6529b",
- "5f2cd236-f0ab-47a1-aaac-23ebaecb5c3a",
- "39dd011b-76c3-4247-9016-8edaf74073cb",
- "d0563514-d012-4a1a-947a-6e3e1f323bed",
- "df3b4eb9-9445-4500-b475-4fa4e87cd115"
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334",
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11933"
],
"x-ms-request-id": [
- "f478ff1a-02e1-46d0-a2aa-9ffd79586772"
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334"
],
"x-ms-correlation-request-id": [
- "f478ff1a-02e1-46d0-a2aa-9ffd79586772"
+ "d0943347-ab2a-4bb8-a5c6-d68419ea8334"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100238Z:f478ff1a-02e1-46d0-a2aa-9ffd79586772"
+ "WESTCENTRALUS:20220322T104416Z:d0943347-ab2a-4bb8-a5c6-d68419ea8334"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8786,7 +8221,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:02:38 GMT"
+ "Tue, 22 Mar 2022 10:44:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8795,29 +8230,29 @@
"-1"
],
"Content-Length": [
- "359139"
+ "529425"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshicentralindia2\",\r\n \"name\": \"kjoshicentralindia2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central India\",\r\n \"etag\": \"AAAAAAAD6kA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"adfasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-25T02:01:58.012555Z\",\r\n \"gatewayUrl\": \"https://kjoshicentralindia2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicentralindia2-centralindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicentralindia2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicentralindia2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicentralindia2.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicentralindia2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicentralindia2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.172.190.13\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AusCentral-Canary\",\r\n \"name\": \"AusCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAD2gw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:44:40.2114897Z\",\r\n \"gatewayUrl\": \"https://auscentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"auscentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/GermanyWestCentral-Canary\",\r\n \"name\": \"GermanyWestCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAAHz1c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:03:09.6147637Z\",\r\n \"gatewayUrl\": \"https://germanywestcentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"germanywestcentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-west\",\r\n \"name\": \"igo-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUPY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-06T18:29:53.3821Z\",\r\n \"gatewayUrl\": \"https://igo-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-west-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.100.11\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus-cons\",\r\n \"name\": \"egtest2-wcus-cons\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIU/Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:13:12.0301258Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus-cons.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus-cons.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"0e60b5c1-920b-47fa-bab1-a1024f7da105\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Central-US/providers/Microsoft.ApiManagement/service/apim-basic-capacity-westcentralus\",\r\n \"name\": \"apim-basic-capacity-westcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUVc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apicore@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-03T06:24:38.2948268Z\",\r\n \"gatewayUrl\": \"https://apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-basic-capacity-westcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-basic-capacity-westcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-basic-capacity-westcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-basic-capacity-westcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-basic-capacity-westcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.209.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestCentralUS-Canary\",\r\n \"name\": \"WestCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIVBE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-07T18:55:30.5556042Z\",\r\n \"gatewayUrl\": \"https://westcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus\",\r\n \"name\": \"egtest2-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUZw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T03:08:55.5303136Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest2-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest2-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest2-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest2-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest2-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.239.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"522e156d-4ebe-40d5-9a1c-c0c9ca5fe806\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-cons-wcus\",\r\n \"name\": \"egtest-cons-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIU/o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:05:54.0136418Z\",\r\n \"gatewayUrl\": \"https://egtest-cons-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-cons-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"10fba2c6-37c6-4149-ab1b-58b6c9b17f65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-wcus\",\r\n \"name\": \"egtest-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIUBs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:06:37.3004386Z\",\r\n \"gatewayUrl\": \"https://egtest-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.210.123\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitinConsumption2020\",\r\n \"name\": \"jitinConsumption2020\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAIVBY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-30T07:39:30.0173932Z\",\r\n \"gatewayUrl\": \"https://jitinconsumption2020.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitinconsumption2020.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SwitzerlandNorth-Canary\",\r\n \"name\": \"SwitzerlandNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAAHA9Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:05:04.4040373Z\",\r\n \"gatewayUrl\": \"https://switzerlandnorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"switzerlandnorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiswitdistrust\",\r\n \"name\": \"kjoshiswitdistrust\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAAHZ1s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-09T22:23:33.183037Z\",\r\n \"gatewayUrl\": \"https://kjoshiswitdistrust.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiswitdistrust-switzerlandnorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiswitdistrust.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiswitdistrust.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiswitdistrust.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiswitdistrust.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiswitdistrust.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.103.131.114\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestIndia-Canary\",\r\n \"name\": \"WestIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAFcbA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:53.8127048Z\",\r\n \"gatewayUrl\": \"https://westindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/KoreaCentral-Canary\",\r\n \"name\": \"KoreaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAFE1c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:39.9581781Z\",\r\n \"gatewayUrl\": \"https://koreacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"koreacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshijnbzrs\",\r\n \"name\": \"kjoshijnbzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAGTvY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-09T18:53:27.2874676Z\",\r\n \"gatewayUrl\": \"https://kjoshijnbzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshijnbzrs-southafricanorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshijnbzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshijnbzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshijnbzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshijnbzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshijnbzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"102.133.171.130\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthAfricaNorth-Canary\",\r\n \"name\": \"SouthAfricaNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAF3Bo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:45:41.6554527Z\",\r\n \"gatewayUrl\": \"https://southafricanorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southafricanorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKWest-Canary\",\r\n \"name\": \"UKWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAITIE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:59:01.8019107Z\",\r\n \"gatewayUrl\": \"https://ukwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ukwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/BrazilSouth-Canary\",\r\n \"name\": \"BrazilSouth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAJYrc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:13.4420019Z\",\r\n \"gatewayUrl\": \"https://brazilsouth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"brazilsouth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshibrazilsouth\",\r\n \"name\": \"kjoshibrazilsouth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAAKeL0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-12-16T18:06:49.8946707Z\",\r\n \"gatewayUrl\": \"https://kjoshibrazilsouth.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshibrazilsouth-brazilsouth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshibrazilsouth.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshibrazilsouth.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshibrazilsouth.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshibrazilsouth.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshibrazilsouth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.195.196.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"64f33089-6da1-4df7-af44-04a5791ea0db\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastAsia-Canary\",\r\n \"name\": \"EastAsia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAAGmA8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:36.9340814Z\",\r\n \"gatewayUrl\": \"https://eastasia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastasia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthIndia-Canary\",\r\n \"name\": \"SouthIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAAF5g4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:49:09.9271745Z\",\r\n \"gatewayUrl\": \"https://southindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaCentral-Canary\",\r\n \"name\": \"CanadaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAI2+g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:43.0182697Z\",\r\n \"gatewayUrl\": \"https://canadacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshicanadaeast\",\r\n \"name\": \"kjoshicanadaeast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAAFFTM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-24T00:06:44.2654848Z\",\r\n \"gatewayUrl\": \"https://kjoshicanadaeast.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshicanadaeast-canadaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshicanadaeast.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshicanadaeast.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshicanadaeast.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshicanadaeast.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshicanadaeast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.222.91\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaEast-Canary\",\r\n \"name\": \"CanadaEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAAEkhM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-29T15:09:19.077246Z\",\r\n \"gatewayUrl\": \"https://canadaeast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadaeast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/ASE-Canary\",\r\n \"name\": \"ASE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAAJi34=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:50:10.100096Z\",\r\n \"gatewayUrl\": \"https://ase-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ase-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanEast-Canary\",\r\n \"name\": \"JapanEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAAL76I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:08.4035509Z\",\r\n \"gatewayUrl\": \"https://japaneast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japaneast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOggw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAPNug=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-12T20:29:50.7685833Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-northcentraltest-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-northcentraltest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-northcentraltest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-northcentraltest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-northcentraltest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.240.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-04\",\r\n \"name\": \"jijohn-consumption-04\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOgvA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-01T03:05:35.5949176Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-04.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-04.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAPLs0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-06\",\r\n \"name\": \"jijohn-consumption-06\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOhug=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-16T17:22:24.5329871Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-06.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-06.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAOguA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAMA1E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshisoutheastasiasql\",\r\n \"name\": \"kjoshisoutheastasiasql\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM83U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-06T18:17:41.2374301Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasiasql.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisoutheastasiasql-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisoutheastasiasql.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisoutheastasiasql.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisoutheastasiasql.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisoutheastasiasql.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasiasql.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.56.76\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshimovetest/providers/Microsoft.ApiManagement/service/kjoshisoutheastasia\",\r\n \"name\": \"kjoshisoutheastasia\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM9Ps=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-14T18:55:36.5109929Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasia.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisoutheastasia-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisoutheastasia.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisoutheastasia.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisoutheastasia.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisoutheastasia.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasia.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.116.142.191\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-forwarded-southeastasia-01\",\r\n \"name\": \"jijohn-forwarded-southeastasia-01\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM/s4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-26T19:12:20.269709Z\",\r\n \"gatewayUrl\": \"https://jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-forwarded-southeastasia-01-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-forwarded-southeastasia-01.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-forwarded-southeastasia-01.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-forwarded-southeastasia-01.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-forwarded-southeastasia-01.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.35.216\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshisoutheastasissql\",\r\n \"name\": \"kjoshisoutheastasissql\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM9LM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi test zrs backup\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-28T20:42:10.5254783Z\",\r\n \"gatewayUrl\": \"https://kjoshisoutheastasissql.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisoutheastasissql-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisoutheastasissql.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisoutheastasissql.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisoutheastasissql.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisoutheastasissql.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisoutheastasissql.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.63.240.71\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/seasia-test\",\r\n \"name\": \"seasia-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAANBCo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"tdtdrtr\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-20T02:27:41.6012757Z\",\r\n \"gatewayUrl\": \"https://seasia-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seasia-test-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seasia-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seasia-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seasia-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seasia-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seasia-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.71.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshimovetest/providers/Microsoft.ApiManagement/service/kjoshizrs\",\r\n \"name\": \"kjoshizrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM8Eo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-15T01:43:01.5681376Z\",\r\n \"gatewayUrl\": \"https://kjoshizrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshizrs-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshizrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshizrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshizrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshizrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshizrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.126.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fed-sea1\",\r\n \"name\": \"jitin-fed-sea1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAM7Qs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-28T00:41:44.8922579Z\",\r\n \"gatewayUrl\": \"https://jitin-fed-sea1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fed-sea1-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fed-sea1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fed-sea1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fed-sea1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fed-sea1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fed-sea1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.76.158.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/msic2dtest\",\r\n \"name\": \"msic2dtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATt+A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-18T10:31:02.3767262Z\",\r\n \"gatewayUrl\": \"https://msic2dtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://msic2dtest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://msic2dtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://msic2dtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://msic2dtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://msic2dtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"msic2dtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.17.207\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/glebrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mitest\": {\r\n \"principalId\": \"16a25af3-e38f-46fb-a7a9-2206552fb4af\",\r\n \"clientId\": \"e42a5c25-1406-4683-90f8-30b42b84ef98\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/Devops-lrp\",\r\n \"name\": \"Devops-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATuDE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-12T00:00:24.5450525Z\",\r\n \"gatewayUrl\": \"https://devops-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devops-lrp-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devops-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devops-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devops-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devops-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devops-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contoso.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-dev-keyvault.vault.azure.net/secrets/MsiTesting\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-03-30T11:36:23-07:00\",\r\n \"thumbprint\": \"0D689F0322B56BCAD0FEC0AEB8900261256C7B27\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.162.162\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4cef27e1-7082-4a28-9772-5336e3f5cf7e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS2-Canary\",\r\n \"name\": \"WUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAR6fI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:12.1377274Z\",\r\n \"gatewayUrl\": \"https://wus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption\",\r\n \"name\": \"kjoshiconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAR7Og=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-05T17:15:09.5924701Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"aa80091d-9ebb-43a7-a173-b83329bfb874\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnet\",\r\n \"name\": \"tehnoonr-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATtys=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-21T19:31:01.6390797Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"therazaportal.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:13:58-08:00\",\r\n \"thumbprint\": \"80D20AE4474CB5A3BBC0223DCBFE769AD7CF4AFE\",\r\n \"subject\": \"CN=therazaportal.apim.net, O=Microsoft, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.173.159\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.26.0.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption2\",\r\n \"name\": \"kjoshiconsumption2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAASrPg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-07T21:52:02.2250806Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off\",\r\n \"name\": \"gleb-corr-off\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpMM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"foo\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:11:18.1464015Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.14.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test\",\r\n \"name\": \"alanfeng-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATyj4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T00:54:33.1727007Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alanfeng-test-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alanfeng-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alanfeng-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alanfeng-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://alanfeng-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.148.165.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-on\",\r\n \"name\": \"gleb-corr-on\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpNY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"asdasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:01:45.0345532Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-on.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-on-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-on.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-on.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-on.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-on.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-on.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.247.221.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vmss-vnet\",\r\n \"name\": \"tehnoonr-vmss-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATx18=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-27T21:23:44.1115799Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vmss-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vmss-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vmss-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vmss-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vmss-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vmss-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vmss-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.70.8\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/mynewsubnet2\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/gleb-ai/providers/Microsoft.ApiManagement/service/gleb-trace\",\r\n \"name\": \"gleb-trace\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpL4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dfsdfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-16T19:32:41.6343295Z\",\r\n \"gatewayUrl\": \"https://gleb-trace.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-trace-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-trace.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-trace.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-trace.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-trace.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-trace.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.8.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/debugger/providers/Microsoft.ApiManagement/service/debugger\",\r\n \"name\": \"debugger\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mijiang\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATsVk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-26T20:32:34.0546555Z\",\r\n \"gatewayUrl\": \"https://debugger.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://debugger-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://debugger.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://debugger.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://debugger.management.azure-api.net\",\r\n \"scmUrl\": \"https://debugger.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"debugger.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.183.42.48\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.ApiManagement/service/dapr-call\",\r\n \"name\": \"dapr-call\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mkim\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAT194=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-28T19:13:58.8059982Z\",\r\n \"gatewayUrl\": \"https://dapr-call.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dapr-call-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dapr-call.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dapr-call.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dapr-call.management.azure-api.net\",\r\n \"scmUrl\": \"https://dapr-call.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dapr-call.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.23.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATpME=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-reserved-ip.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnetbadcert\",\r\n \"name\": \"tehnoonr-vnetbadcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAATuGs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-19T20:02:03.0283499Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnetbadcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnetbadcert-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnetbadcert.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnetbadcert.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnetbadcert.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnetbadcert.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnetbadcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.158.252.155\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/CloudServiceTest\",\r\n \"name\": \"CloudServiceTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY6vI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:56:15.4310419Z\",\r\n \"gatewayUrl\": \"https://cloudservicetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cloudservicetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cloudservicetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cloudservicetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cloudservicetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://cloudservicetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cloudservicetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.184.231\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/vscodetest3\",\r\n \"name\": \"vscodetest3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXqac=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:37:34.6402046Z\",\r\n \"gatewayUrl\": \"https://vscodetest3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154\",\r\n \"name\": \"ps4154\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+oA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T09:00:10.585047Z\",\r\n \"gatewayUrl\": \"https://ps4154.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4154-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4154.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4154.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4154.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4154.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4154.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.84.168.115\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ContosoGroup02/providers/Microsoft.ApiManagement/service/ContosoApi2\",\r\n \"name\": \"ContosoApi2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXYGc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T22:34:12.7640649Z\",\r\n \"gatewayUrl\": \"https://contosoapi2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://contosoapi2-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://contosoapi2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://contosoapi2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://contosoapi2.management.azure-api.net\",\r\n \"scmUrl\": \"https://contosoapi2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contosoapi2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.240.65\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286\",\r\n \"name\": \"ps8286\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+fs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T07:53:48.2976481Z\",\r\n \"gatewayUrl\": \"https://ps8286.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8286-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8286.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8286.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8286.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8286.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8286.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.182.227.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-apim/providers/Microsoft.ApiManagement/service/tehnoonr-apim3\",\r\n \"name\": \"tehnoonr-apim3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAYHGY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T16:25:34.5489001Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-apim3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-apim3-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-apim3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-apim3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-apim3.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-apim3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-apim3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.198.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e67f9e1e-6763-4024-8ee1-720d667cb148\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUS-Canary\",\r\n \"name\": \"CUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXq7w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:47:24.9248008Z\",\r\n \"gatewayUrl\": \"https://cus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/VscodeTest\",\r\n \"name\": \"VscodeTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAXRhY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:00:50.8875823Z\",\r\n \"gatewayUrl\": \"https://vscodetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vscodetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vscodetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vscodetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vscodetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vscodetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.73.40\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9286/providers/Microsoft.ApiManagement/service/ps6637\",\r\n \"name\": \"ps6637\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+KA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T04:37:43.8312417Z\",\r\n \"gatewayUrl\": \"https://ps6637.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6637-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6637.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6637.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6637.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6637.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6637.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.154.217.165\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKS-Canary\",\r\n \"name\": \"UKS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAATuoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:47.9089467Z\",\r\n \"gatewayUrl\": \"https://uks-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uks-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiauseastzrs\",\r\n \"name\": \"kjoshiauseastzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAASess=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjsohi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-09T20:10:10.0454066Z\",\r\n \"gatewayUrl\": \"https://kjoshiauseastzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiauseastzrs-australiaeast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiauseastzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiauseastzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiauseastzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiauseastzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiauseastzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.75.182.144\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-aueast\",\r\n \"name\": \"gleb-aueast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAQtqE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"czxczxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-25T21:13:49.2851403Z\",\r\n \"gatewayUrl\": \"https://gleb-aueast.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-aueast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAQtNU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanWest-Canary\",\r\n \"name\": \"JapanWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"etag\": \"AAAAAAAEzps=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T15:51:51.233468Z\",\r\n \"gatewayUrl\": \"https://japanwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japanwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/ogf\",\r\n \"name\": \"ogf\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdZZ8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-08T18:11:26.9902003Z\",\r\n \"gatewayUrl\": \"https://ogf.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.248.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-test\",\r\n \"name\": \"igo-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-19T18:40:24.5701371Z\",\r\n \"gatewayUrl\": \"https://igo-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.59.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLaE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohndiagnosticlogs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.64.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/multiregiondisablesecondary\",\r\n \"name\": \"multiregiondisablesecondary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdeIo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T19:16:11.2793778Z\",\r\n \"gatewayUrl\": \"https://multiregiondisablesecondary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://multiregiondisablesecondary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://multiregiondisablesecondary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://multiregiondisablesecondary.management.azure-api.net\",\r\n \"scmUrl\": \"https://multiregiondisablesecondary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"multiregiondisablesecondary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.99.158\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"40.117.56.33\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbbLU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-inittest\",\r\n \"name\": \"gleb-inittest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdeWM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dsfsdfsdfs\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-19T00:43:17.2463706Z\",\r\n \"gatewayUrl\": \"https://gleb-inittest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-inittest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-inittest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-inittest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-inittest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-inittest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.125.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"e49076f0-829d-4af8-a0d3-3655f3e9161d\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test3\",\r\n \"name\": \"jitin-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdamY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"asd@m.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:24:33.8034229Z\",\r\n \"gatewayUrl\": \"https://jitin-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.171.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-g2bomw6eu755pgttzo76wxnqm73eub4herxyphfjhnmah3r4svwube4zaaev6/providers/Microsoft.ApiManagement/service/cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj\",\r\n \"name\": \"cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdYHc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-23T00:23:04.7311039Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-ox577sexawjdt6skd6fpf7l5wrw2pfhqjlyj.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.100.42.122\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\",\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLUo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://aztest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.195.148\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n }\r\n },\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2036-06-28T08:37:53-07:00\",\r\n \"thumbprint\": \"C5091132E9ADF8AD3E33932AE60A5C8FA939E824\",\r\n \"subject\": \"CN=Cisco Umbrella Root CA, O=Cisco\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b681823-8edc-4e3e-84e4-4a5616a2f28b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test2\",\r\n \"name\": \"jitin-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbeu8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:34:55.8132257Z\",\r\n \"gatewayUrl\": \"https://jitin-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apimanagement-cors-proxy-df.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devenv.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": [],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"aa00a773-23a4-42b1-b4a8-8ef9cee72920\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-pwusprksufiyswdvnjhqdbqxgtc4o3lzxopce6ombbc3xctqxxfcyrcpk3gky/providers/Microsoft.ApiManagement/service/cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s\",\r\n \"name\": \"cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdaT4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-23T17:31:29.3407434Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-dicxc6xrsiisrwqf2n2cnrwciiluepat7p3s.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.50.78\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbaE0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbbiU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-bjrwpbupolctjc4koww7kewlygazaapv7uxl63a4rvtt4yrc5deurr4qqpzwp/providers/Microsoft.ApiManagement/service/cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3\",\r\n \"name\": \"cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdYIk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-16T22:31:18.1219007Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-brlqctd6zjypd5sdv35c75ctbb5uwyl6aar3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.122.83\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test2\",\r\n \"name\": \"alanfeng-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAcOlg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@example.com\",\r\n \"publisherName\": \"Publisher\",\r\n \"notificationSenderEmail\": \"publisher@example.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-21T23:49:32.5193553Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimmonetization/providers/Microsoft.ApiManagement/service/alzaslonmonetization20110708\",\r\n \"name\": \"alzaslonmonetization20110708\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdc6E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:22:28.1527262Z\",\r\n \"gatewayUrl\": \"https://alzaslonmonetization20110708.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslonmonetization20110708-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslonmonetization20110708.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslonmonetization20110708.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslonmonetization20110708.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslonmonetization20110708.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslonmonetization20110708.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.250.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fc5c18d2-0309-4b38-8c2a-f548b5e06ee3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestAPIManage123\",\r\n \"name\": \"TestAPIManage123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdMoQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPI\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-11T14:24:14.6253855Z\",\r\n \"gatewayUrl\": \"https://testapimanage123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapimanage123-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapimanage123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapimanage123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapimanage123.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapimanage123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapimanage123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.7.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off2\",\r\n \"name\": \"gleb-corr-off2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLT8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dassdsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:58:27.2967081Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off2.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.252.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"54c1d67c-4a66-40e2-859c-eaf32dbd00ff\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-57-outage/providers/Microsoft.ApiManagement/service/kjoshisncablecut\",\r\n \"name\": \"kjoshisncablecut\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdTeg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sfdasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-16T17:52:35.2856029Z\",\r\n \"gatewayUrl\": \"https://kjoshisncablecut.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisncablecut-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisncablecut.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisncablecut.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisncablecut.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisncablecut.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisncablecut.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.117.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14d2a59a-3ef8-4cf7-b783-66fa6d9ac26b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbagc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41128fb9-0565-4a21-ad64-ef9282afb49c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdLTc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/delete-me\",\r\n \"name\": \"delete-me\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdYJQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-02T20:10:40.2502073Z\",\r\n \"gatewayUrl\": \"https://delete-me.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete-me-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete-me.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete-me.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete-me.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete-me.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete-me.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.74.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntestConsumption\",\r\n \"name\": \"tntestConsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAbc3Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"atuannguyen1997@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-22T00:04:17.8294341Z\",\r\n \"gatewayUrl\": \"https://tntestconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntestconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"004f6096-d97a-4a99-9c09-7499ee36129a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest\",\r\n \"name\": \"tntest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\",\r\n \"accountName\": \"azureapimanagement\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAdeB0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tuanguye@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-29T17:08:15.1230697Z\",\r\n \"gatewayUrl\": \"https://tntest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"google.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-10-08T12:22:22-07:00\",\r\n \"thumbprint\": \"280743F071927D36CAC49A5A9066B0C256145982\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.165.120\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_128_CBC_SHA256\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2017-03-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/FranceCentral-Canary\",\r\n \"name\": \"FranceCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"France Central\",\r\n \"etag\": \"AAAAAAAGlBQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:16:01.6505783Z\",\r\n \"gatewayUrl\": \"https://francecentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"francecentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest1\",\r\n \"name\": \"tntest1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARKCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"a@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-21T05:15:14.3715298Z\",\r\n \"gatewayUrl\": \"https://tntest1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest1.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"70.37.74.153\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.Network/virtualNetworks/jikang-test-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v2\",\r\n \"name\": \"jijohn-isolated-prod-v2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHp0E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T20:41:11.6877505Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v2-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.ApiManagement/service/sfapim-jikang-testing\",\r\n \"name\": \"sfapim-jikang-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARKWw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T01:25:32.9898807Z\",\r\n \"gatewayUrl\": \"https://sfapim-jikang-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sfapim-jikang-testing-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sfapim-jikang-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sfapim-jikang-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sfapim-jikang-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://sfapim-jikang-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sfapim-jikang-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.215.115.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.Network/virtualNetworks/jikang-test-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"subnetAddress\": \"10.0.1.0/24\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"658e1d98-0b1c-48fa-b1ef-21fb1efe1c83\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARFYs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisnoutagescus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARKTI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://accessibility.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"6a729ed5-af23-49c1-9ff5-56efddf1dcbc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthCentralUS-Canary\",\r\n \"name\": \"SouthCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAPERA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:01:56.1912158Z\",\r\n \"gatewayUrl\": \"https://southcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v1\",\r\n \"name\": \"jijohn-isolated-prod-v1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHdzY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T00:35:51.4220489Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp\",\r\n \"name\": \"devportal-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAARJew=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"API management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-16T17:38:14.081027Z\",\r\n \"gatewayUrl\": \"https://devportal-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devportal-lrp-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devportal-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devportal-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devportal-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devportal-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devportal-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.240.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5ad27f6-e2f1-48e2-a287-d96d6a2bc8d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Test-remote-debugging/providers/Microsoft.ApiManagement/service/bugbash-Galin\",\r\n \"name\": \"bugbash-Galin\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAARq40=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-17T18:10:51.6628173Z\",\r\n \"gatewayUrl\": \"https://bugbash-galin.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://bugbash-galin-eastus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://bugbash-galin.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://bugbash-galin.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://bugbash-galin.management.azure-api.net\",\r\n \"scmUrl\": \"https://bugbash-galin.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"bugbash-galin.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.252.118.227\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f80f1b1a-ccfa-45a2-b2ca-066069ac9808\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastUS2-Canary\",\r\n \"name\": \"EastUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAR9hQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-16T02:13:20.6966778Z\",\r\n \"gatewayUrl\": \"https://eastus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ui-test-resources/providers/Microsoft.ApiManagement/service/uitest\",\r\n \"name\": \"uitest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA417U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"uitest@apimuitest.onmicrosoft.com\",\r\n \"publisherName\": \"APIM UI Tests\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-16T14:53:14.5470049Z\",\r\n \"gatewayUrl\": \"https://uitest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://uitest-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://uitest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://uitest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://uitest.management.azure-api.net\",\r\n \"scmUrl\": \"https://uitest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uitest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.186.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/jikang-msi\",\r\n \"name\": \"jikang-msi\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jikang\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA4xhI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-14T22:42:31.4857913Z\",\r\n \"gatewayUrl\": \"https://jikang-msi.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jikang-msi-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jikang-msi.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jikang-msi.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jikang-msi.management.azure-api.net\",\r\n \"scmUrl\": \"https://jikang-msi.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jikang-msi.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.24.84\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"84e9ecc2-5001-4fe8-93e5-0842d3fa5096\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Mahsa-Container/providers/Microsoft.ApiManagement/service/Mahsa-APIM\",\r\n \"name\": \"Mahsa-APIM\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA44a8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mhasanisadi@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-18T18:57:50.0244482Z\",\r\n \"gatewayUrl\": \"https://mahsa-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mahsa-apim-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mahsa-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mahsa-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mahsa-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://mahsa-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mahsa-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.81.12.249\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS-Canary\",\r\n \"name\": \"EUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAypN0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:52.9254769Z\",\r\n \"gatewayUrl\": \"https://eus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/tntestNewApiVersion\",\r\n \"name\": \"tntestNewApiVersion\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA4yyE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"atuannguyen1997@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-24T21:06:41.3644516Z\",\r\n \"gatewayUrl\": \"https://tntestnewapiversion.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntestnewapiversion-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntestnewapiversion.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntestnewapiversion.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntestnewapiversion.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntestnewapiversion.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntestnewapiversion.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.188.124.196\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest1/providers/Microsoft.ApiManagement/service/delete7\",\r\n \"name\": \"delete7\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA3YoA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"m\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-24T00:56:34.1392279Z\",\r\n \"gatewayUrl\": \"https://delete7.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete7-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete7.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete7.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete7.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete7.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete7.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest1/providers/Microsoft.Network/virtualNetworks/will-be-deleted-vnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fb4fdadc-f594-493d-963a-453d8ee8ed4c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test-consumption\",\r\n \"name\": \"alanfeng-test-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA2OXY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T01:07:26.9020978Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA4apU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/APIM_OGF/providers/Microsoft.ApiManagement/service/ogftest123\",\r\n \"name\": \"ogftest123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5Oto=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-ssaiprasan@microsoft.com\",\r\n \"publisherName\": \"test78\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T10:14:13.7358898Z\",\r\n \"gatewayUrl\": \"https://ogftest123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogftest123-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogftest123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogftest123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogftest123.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogftest123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogftest123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.164.27\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4a2500a6-1273-42bf-a6ad-05272ee561ef\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/scfitzgeAPIM/providers/Microsoft.ApiManagement/service/apitester3000\",\r\n \"name\": \"apitester3000\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA41Qg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"scfitzge@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-05T20:30:06.410739Z\",\r\n \"gatewayUrl\": \"https://apitester3000.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apitester3000-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apitester3000.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apitester3000.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apitester3000.management.azure-api.net\",\r\n \"scmUrl\": \"https://apitester3000.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apitester3000.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.85.173.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/delete1\",\r\n \"name\": \"delete1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA479A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"m\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-22T20:48:11.3971577Z\",\r\n \"gatewayUrl\": \"https://delete1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete1-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete1.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.91.146\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/virtualNetworks/new-vnet-2/subnets/A\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAh+y4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest12\",\r\n \"name\": \"tntest12\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAkH0s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vvktest@gmail.com\",\r\n \"publisherName\": \"m\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:51:51.2971264Z\",\r\n \"gatewayUrl\": \"https://tntest12.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest12-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest12.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest12.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest12.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest12.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest12.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.93.104.129\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest14\",\r\n \"name\": \"tntest14\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAkHxY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tntest@gmail.com\",\r\n \"publisherName\": \"tntest04\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-10T00:18:29.4518304Z\",\r\n \"gatewayUrl\": \"https://tntest14.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest14-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest14.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest14.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest14.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest14.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest14.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.67.137.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\",\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAh+jk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest13\",\r\n \"name\": \"tntest13\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAkHxc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"a\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-10T00:11:57.014438Z\",\r\n \"gatewayUrl\": \"https://tntest13.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest13-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest13.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest13.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest13.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest13.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest13.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.67.228.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fwd-north-europe\",\r\n \"name\": \"jitin-fwd-north-europe\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAj6Ek=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T00:58:18.8388979Z\",\r\n \"gatewayUrl\": \"https://jitin-fwd-north-europe.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fwd-north-europe-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fwd-north-europe.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fwd-north-europe.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fwd-north-europe.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fwd-north-europe.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fwd-north-europe.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.164.120.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABbJBI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/corrtest\",\r\n \"name\": \"corrtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABaE+Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"dfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T05:32:44.2623295Z\",\r\n \"gatewayUrl\": \"https://corrtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://corrtest-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://corrtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://corrtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://corrtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://corrtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"corrtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.63.98.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABaFAI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vpnpremium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://samir-msi-keyvault.vault.azure.net/secrets/msicertificate\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-12-18T03:11:47-08:00\",\r\n \"thumbprint\": \"9833D531D7A45C565766F2A85908BD3692E0BD3F\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ca1d33f7-3cf9-42ec-b3e9-d526a1ee953a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/test-fwd-westeurope\",\r\n \"name\": \"test-fwd-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABaNeA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T01:01:10.5192286Z\",\r\n \"gatewayUrl\": \"https://test-fwd-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://test-fwd-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://test-fwd-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://test-fwd-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://test-fwd-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://test-fwd-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test-fwd-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.30.219\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784\",\r\n \"name\": \"ps784\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABjBto=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T10:01:34.4579155Z\",\r\n \"gatewayUrl\": \"https://ps784.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps784.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-usw3-az\",\r\n \"name\": \"jijohn-usw3-az\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 3\",\r\n \"etag\": \"AAAAAAAAv4s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-10T17:20:52.7775395Z\",\r\n \"gatewayUrl\": \"https://jijohn-usw3-az.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-usw3-az-westus3-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-usw3-az.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-usw3-az.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-usw3-az.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-usw3-az.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-usw3-az.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.150.251.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 4\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-usw3\",\r\n \"name\": \"jijohn-consumption-usw3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 3\",\r\n \"etag\": \"AAAAAAAAX/k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-21T18:12:31.9230929Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-usw3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-usw3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-jio-india-west\",\r\n \"name\": \"jijohn-jio-india-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"AAAAAAAANMc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-24T20:46:56.3060919Z\",\r\n \"gatewayUrl\": \"https://jijohn-jio-india-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-jio-india-west-jioindiawest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-jio-india-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-jio-india-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-jio-india-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-jio-india-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-jio-india-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.64.18.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-australiacentral2-vmss-test3\",\r\n \"name\": \"apim-australiacentral2-vmss-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAC3gU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-26T22:18:09.8509396Z\",\r\n \"gatewayUrl\": \"https://apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-australiacentral2-vmss-test3-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-australiacentral2-vmss-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-australiacentral2-vmss-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-australiacentral2-vmss-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-australiacentral2-vmss-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.66.131\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-cbr2\",\r\n \"name\": \"jitin-cbr2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAC3c0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-17T22:22:26.3793973Z\",\r\n \"gatewayUrl\": \"https://jitin-cbr2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-cbr2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-cbr2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-cbr2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-cbr2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-cbr2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-cbr2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.71.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AustraliaCentral2-Canary\",\r\n \"name\": \"AustraliaCentral2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAC4RU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:01:59.2396648Z\",\r\n \"gatewayUrl\": \"https://australiacentral2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"australiacentral2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-bn1-euap\",\r\n \"name\": \"jijohn-bn1-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAH0xU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-14T17:38:53.5597669Z\",\r\n \"gatewayUrl\": \"https://jijohn-bn1-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-bn1-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/kjoshitestdelete\",\r\n \"name\": \"kjoshitestdelete\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrFc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"fdsfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-02T19:31:21.4943928Z\",\r\n \"gatewayUrl\": \"https://kjoshitestdelete.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshitestdelete-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshitestdelete.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshitestdelete.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshitestdelete.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshitestdelete.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshitestdelete.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.39.27.129\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test-selfhostedgateway-billing-euap-east\",\r\n \"name\": \"jitin-test-selfhostedgateway-billing-euap-east\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrE8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-15T18:44:34.0559846Z\",\r\n \"gatewayUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east-eu2e-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test-selfhostedgateway-billing-euap-east.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.71.201\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"52.180.162.187\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-east-cue-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieuapzrs\",\r\n \"name\": \"kjoshieuapzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrFk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-01-27T03:09:46.1687334Z\",\r\n \"gatewayUrl\": \"https://kjoshieuapzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieuapzrs-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieuapzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshieuapzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieuapzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieuapzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieuapzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.79.113.1\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/az-testing\",\r\n \"name\": \"az-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrJE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"abc@gmail.com\",\r\n \"publisherName\": \"abc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-21T21:03:19.4891773Z\",\r\n \"gatewayUrl\": \"https://az-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://az-testing-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://az-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://az-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://az-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://az-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"az-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.156.203\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 3\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3f8ff19a-8e21-4440-9263-d312ca844009\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/maskingtest\",\r\n \"name\": \"maskingtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIz/U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"fdsfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-12-08T17:33:46.4391597Z\",\r\n \"gatewayUrl\": \"https://maskingtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://maskingtest-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://maskingtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://maskingtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://maskingtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://maskingtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"maskingtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.79.112.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"944d40de-c9b8-4df7-ba95-b34cfb9ebcee\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-eastus2euap\",\r\n \"name\": \"tntest-eastus2euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrF8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"abc@gmail.com\",\r\n \"publisherName\": \"abc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-14T22:39:14.7172966Z\",\r\n \"gatewayUrl\": \"https://tntest-eastus2euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-eastus2euap-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest-eastus2euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest-eastus2euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest-eastus2euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest-eastus2euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest-eastus2euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.146.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-consumption-test\",\r\n \"name\": \"jitin-consumption-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAIrFs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:18:44.5458147Z\",\r\n \"gatewayUrl\": \"https://jitin-consumption-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-consumption-test-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-consumption-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-consumption-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-consumption-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-consumption-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-consumption-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.151.226\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS2EUAP-Canary\",\r\n \"name\": \"EUS2EUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAH0xQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:13.9169127Z\",\r\n \"gatewayUrl\": \"https://eus2euap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus2euap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/corrtest2\",\r\n \"name\": \"corrtest2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAH0xE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"fsdsds\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-12T15:22:29.0211308Z\",\r\n \"gatewayUrl\": \"https://corrtest2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"corrtest2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"eed46f16-8a01-4b45-a5b8-acdf2d6c415e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/testlrp/providers/Microsoft.ApiManagement/service/DevO-lrp-canary\",\r\n \"name\": \"DevO-lrp-canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAP3iM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-30T18:02:47.6935595Z\",\r\n \"gatewayUrl\": \"https://devo-lrp-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devo-lrp-canary-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devo-lrp-canary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devo-lrp-canary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devo-lrp-canary.management.azure-api.net\",\r\n \"scmUrl\": \"https://devo-lrp-canary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devo-lrp-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.235.165\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-forwarded-euap\",\r\n \"name\": \"jitin-dedicated-forwarded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtEo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-06T01:45:14.4195684Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-forwarded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-forwarded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-forwarded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-forwarded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-forwarded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-forwarded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.54.141\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest-cons\",\r\n \"name\": \"glebegtest-cons\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPrXQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"wadasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:13:08.8791547Z\",\r\n \"gatewayUrl\": \"https://glebegtest-cons.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebegtest-cons.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/apim-basic-capacity-canary\",\r\n \"name\": \"apim-basic-capacity-canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtiA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apicore@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-03T06:23:32.1664949Z\",\r\n \"gatewayUrl\": \"https://apim-basic-capacity-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-basic-capacity-canary-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-basic-capacity-canary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-basic-capacity-canary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-basic-capacity-canary.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-basic-capacity-canary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-basic-capacity-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.224.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-east-us-2-euap/providers/Microsoft.ApiManagement/service/alzasloneuap03\",\r\n \"name\": \"alzasloneuap03\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAP1x4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-23T16:26:47.8637967Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap03.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap03-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap03.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap03.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap03.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap03.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap03.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.160.66\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"91a2e416-5fb4-4916-95d4-64b306f9d924\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n },\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/Api-Default-West-Europe/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vpnpremium\": {\r\n \"principalId\": \"95194df2-9208-4128-af2d-a10d2af9b5a3\",\r\n \"clientId\": \"aaff9c7d-6328-4db2-9844-ab0e3e7806cf\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-global-rp\",\r\n \"name\": \"jitin-dedicated-global-rp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtE4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T21:17:27.8631556Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-global-rp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-global-rp-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-global-rp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-global-rp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-global-rp.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-global-rp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-global-rp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.250\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/VscodeTest/providers/Microsoft.ApiManagement/service/Petstore-demo\",\r\n \"name\": \"Petstore-demo\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtF4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T22:39:34.6910007Z\",\r\n \"gatewayUrl\": \"https://petstore-demo.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://petstore-demo-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://petstore-demo.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://petstore-demo.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://petstore-demo.management.azure-api.net\",\r\n \"scmUrl\": \"https://petstore-demo.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"petstore-demo.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.60.65\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest\",\r\n \"name\": \"glebegtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtGA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"xcvxcvxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:12:14.2339542Z\",\r\n \"gatewayUrl\": \"https://glebegtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebegtest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebegtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://glebegtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebegtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebegtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebegtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.229.177\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-dedicated-fwded-euap\",\r\n \"name\": \"jitin-dedicated-fwded-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtFQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-05T22:54:10.528244Z\",\r\n \"gatewayUrl\": \"https://jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-dedicated-fwded-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-dedicated-fwded-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-dedicated-fwded-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-dedicated-fwded-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-dedicated-fwded-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-dedicated-fwded-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.48.106\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUSEUAP-Canary\",\r\n \"name\": \"CUSEUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAOg6I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:40:38.7929014Z\",\r\n \"gatewayUrl\": \"https://cuseuap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cuseuap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6203f1ba-72eb-4a6d-a878-c914fa25b5a4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtEY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-30T18:48:04.0720868Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.55.164\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"732dcbcd-116e-4e3e-a9b2-b8ec6f0ce3e7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/internal-vnet/providers/Microsoft.ApiManagement/service/samirhsbcvnet\",\r\n \"name\": \"samirhsbcvnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtFA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-04T18:33:42.1493502Z\",\r\n \"gatewayUrl\": \"https://samirhsbcvnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://samirhsbcvnet-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://samirhsbcvnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://samirhsbcvnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://samirhsbcvnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://samirhsbcvnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"samirhsbcvnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.180.157\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.31.0.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/internal-vnet/providers/Microsoft.Network/virtualNetworks/apimvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test-selfhostedgateway-billing-euap-central\",\r\n \"name\": \"jitin-test-selfhostedgateway-billing-euap-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtEI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-15T18:45:25.4189918Z\",\r\n \"gatewayUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central-cue-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test-selfhostedgateway-billing-euap-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test-selfhostedgateway-billing-euap-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.13.3\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/testlrp/providers/Microsoft.ApiManagement/service/Dev-lrp-canary2\",\r\n \"name\": \"Dev-lrp-canary2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAP3RQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T22:20:07.5445667Z\",\r\n \"gatewayUrl\": \"https://dev-lrp-canary2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dev-lrp-canary2-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dev-lrp-canary2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dev-lrp-canary2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dev-lrp-canary2.management.azure-api.net\",\r\n \"scmUrl\": \"https://dev-lrp-canary2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dev-lrp-canary2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.238.147\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-central-euap\",\r\n \"name\": \"jijohn-central-euap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtHY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-15T03:01:22.9302721Z\",\r\n \"gatewayUrl\": \"https://jijohn-central-euap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-central-euap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-central-euap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-central-euap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-central-euap.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-central-euap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-central-euap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.225.10\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_128_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/DebuggingTest\",\r\n \"name\": \"DebuggingTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAPtFw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T17:31:21.1998429Z\",\r\n \"gatewayUrl\": \"https://debuggingtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://debuggingtest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://debuggingtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://debuggingtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://debuggingtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://debuggingtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"debuggingtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.162.95\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-uae-central\",\r\n \"name\": \"jitin-uae-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAADBWA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-12T18:44:51.9105707Z\",\r\n \"gatewayUrl\": \"https://jitin-uae-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-uae-central-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-uae-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-uae-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-uae-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-uae-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-uae-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.64.181\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-uaecentral-vmss\",\r\n \"name\": \"apim-uaecentral-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAADBVE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:40:25.8886265Z\",\r\n \"gatewayUrl\": \"https://apim-uaecentral-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-uaecentral-vmss-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-uaecentral-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-uaecentral-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-uaecentral-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-uaecentral-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-uaecentral-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.70.76\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-germanynorth-vmss\",\r\n \"name\": \"apim-germanynorth-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany North\",\r\n \"etag\": \"AAAAAAACsuY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T01:37:08.6104095Z\",\r\n \"gatewayUrl\": \"https://apim-germanynorth-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-germanynorth-vmss-germanynorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-germanynorth-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-germanynorth-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-germanynorth-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-germanynorth-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-germanynorth-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.208.134\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-norwaywest-vmss2\",\r\n \"name\": \"apim-norwaywest-vmss2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway West\",\r\n \"etag\": \"AAAAAAACi8Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T23:20:49.4916182Z\",\r\n \"gatewayUrl\": \"https://apim-norwaywest-vmss2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-norwaywest-vmss2-norwaywest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-norwaywest-vmss2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-norwaywest-vmss2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-norwaywest-vmss2.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-norwaywest-vmss2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-norwaywest-vmss2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.165.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-switzerlandwest-vmss\",\r\n \"name\": \"apim-switzerlandwest-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland West\",\r\n \"etag\": \"AAAAAAAEpqI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:25:15.6687061Z\",\r\n \"gatewayUrl\": \"https://apim-switzerlandwest-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-switzerlandwest-vmss-switzerlandwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-switzerlandwest-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-switzerlandwest-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-switzerlandwest-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-switzerlandwest-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-switzerlandwest-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.168.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-brazilsoutheast-vmss\",\r\n \"name\": \"apim-brazilsoutheast-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"AAAAAAABN/Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-23T23:24:40.0638446Z\",\r\n \"gatewayUrl\": \"https://apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-brazilsoutheast-vmss-brazilsoutheast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-brazilsoutheast-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-brazilsoutheast-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-brazilsoutheast-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-brazilsoutheast-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.40.33.4\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-jio-india-central\",\r\n \"name\": \"jitin-jio-india-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India Central\",\r\n \"etag\": \"AAAAAAAAX3Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-25T16:21:32.8139789Z\",\r\n \"gatewayUrl\": \"https://jitin-jio-india-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-jio-india-central-jioindiacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-jio-india-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-jio-india-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-jio-india-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-jio-india-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-jio-india-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.193.208.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-UAENorth\",\r\n \"name\": \"jijohn-UAENorth\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE North\",\r\n \"etag\": \"AAAAAAAGrSU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-22T13:55:02.5505865Z\",\r\n \"gatewayUrl\": \"https://jijohn-uaenorth.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-uaenorth.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AusCentral-Canary\",\r\n \"name\": \"AusCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"etag\": \"AAAAAAAJZK0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:44:40.2114897Z\",\r\n \"gatewayUrl\": \"https://auscentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"auscentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mackotreder/providers/Microsoft.ApiManagement/service/mtreder20220501\",\r\n \"name\": \"mtreder20220501\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAAOlBc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mackotreder@microsoft.com\",\r\n \"publisherName\": \"trederix\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-05T11:17:58.0113683Z\",\r\n \"gatewayUrl\": \"https://mtreder20220501.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mtreder20220501-germanywestcentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mtreder20220501.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mtreder20220501.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mtreder20220501.management.azure-api.net\",\r\n \"scmUrl\": \"https://mtreder20220501.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mtreder20220501.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.79.210.26\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mackotreder@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-05T11:17:57.92639Z\",\r\n \"lastModifiedBy\": \"mackotreder@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-05T11:17:57.92639Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/GermanyWestCentral-Canary\",\r\n \"name\": \"GermanyWestCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"AAAAAAAN6Po=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:03:09.6147637Z\",\r\n \"gatewayUrl\": \"https://germanywestcentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"germanywestcentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jonorlu-dev/providers/Microsoft.ApiManagement/service/apim-jonorlu-con\",\r\n \"name\": \"apim-jonorlu-con\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzNs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jonorlu@microsoft.com\",\r\n \"publisherName\": \"apim-jonorlu-con\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-20T07:34:08.9223717Z\",\r\n \"gatewayUrl\": \"https://apim-jonorlu-con.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-jonorlu-con.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f8b7b4d1-a666-4a70-bf27-946256f4bf53\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jonorlu@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-20T07:34:08.8679799Z\",\r\n \"lastModifiedBy\": \"jonorlu@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-20T09:00:23.0456641Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-west\",\r\n \"name\": \"igo-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAAN124=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-06T18:29:53.3821Z\",\r\n \"gatewayUrl\": \"https://igo-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-west-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.100.11\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"igo@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-07T17:15:34.7072651Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus-cons\",\r\n \"name\": \"egtest2-wcus-cons\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzPQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:13:12.0301258Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus-cons.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus-cons.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"0e60b5c1-920b-47fa-bab1-a1024f7da105\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-13T19:13:11.7683548Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-13T19:15:37.3080641Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/azapimpolicytest3\",\r\n \"name\": \"azapimpolicytest3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANtzg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"sdfssd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-30T21:24:20.0423014Z\",\r\n \"gatewayUrl\": \"https://azapimpolicytest3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://azapimpolicytest3-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://azapimpolicytest3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://azapimpolicytest3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://azapimpolicytest3.management.azure-api.net\",\r\n \"scmUrl\": \"https://azapimpolicytest3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"azapimpolicytest3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.223.135\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-30T21:24:19.8472042Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-30T21:24:19.8472042Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Central-US/providers/Microsoft.ApiManagement/service/apim-basic-capacity-westcentralus\",\r\n \"name\": \"apim-basic-capacity-westcentralus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt98=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apicore@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-03T06:24:38.2948268Z\",\r\n \"gatewayUrl\": \"https://apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-basic-capacity-westcentralus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-basic-capacity-westcentralus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-basic-capacity-westcentralus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-basic-capacity-westcentralus.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-basic-capacity-westcentralus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-basic-capacity-westcentralus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.209.17\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-standard\",\r\n \"name\": \"seaki-westcentralus-standard\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt4A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:28:37.1432631Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-standard.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-standard-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-standard.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-standard.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-standard.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-standard.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-standard.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.195.167\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"206aff6e-dcee-4f9e-b196-72704d74f875\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:28:36.9321517Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:43:46.2042402Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-premium\",\r\n \"name\": \"seaki-westcentralus-premium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANuHg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:29:27.3037404Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-premium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-premium-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-premium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-premium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-premium.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-premium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-premium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.211.29\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fffb4b43-9390-4014-9a07-06ee1196ea7d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:29:27.1286347Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:46:04.9103692Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestCentralUS-Canary\",\r\n \"name\": \"WestCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzMI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-07T18:55:30.5556042Z\",\r\n \"gatewayUrl\": \"https://westcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest2-wcus\",\r\n \"name\": \"egtest2-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANtzo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdas\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T03:08:55.5303136Z\",\r\n \"gatewayUrl\": \"https://egtest2-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest2-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest2-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest2-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest2-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest2-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest2-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.239.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"522e156d-4ebe-40d5-9a1c-c0c9ca5fe806\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-13T03:08:55.3341193Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-13T04:11:42.0216045Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-cons-wcus\",\r\n \"name\": \"egtest-cons-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzOc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdasda\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:05:54.0136418Z\",\r\n \"gatewayUrl\": \"https://egtest-cons-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-cons-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"10fba2c6-37c6-4149-ab1b-58b6c9b17f65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-12T23:34:37.6507573Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-test\",\r\n \"name\": \"seaki-westcentralus-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"appType\": \"test\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt8w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-16T16:39:17.5135079Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-test-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.78.185.225\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"136eefd7-9fa2-401a-bbd7-57fbd69a551f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-19T02:26:23.6152563Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T09:59:24.1178262Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/wcustest\",\r\n \"name\": \"wcustest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzMA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dfsdsf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-21T02:02:56.8112426Z\",\r\n \"gatewayUrl\": \"https://wcustest.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wcustest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-21T02:02:56.6685082Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-21T02:02:56.6685082Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-westcentralus-developer\",\r\n \"name\": \"seaki-westcentralus-developer\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANtuk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:13:25.2987467Z\",\r\n \"gatewayUrl\": \"https://seaki-westcentralus-developer.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-westcentralus-developer-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-westcentralus-developer.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-westcentralus-developer.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-westcentralus-developer.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-westcentralus-developer.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-westcentralus-developer.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.105.114\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"06e9bc03-f3ee-4e80-ba08-1e303c70f3e7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:13:25.0788631Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:40:08.035272Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/delete2\",\r\n \"name\": \"delete2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt0g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"ms@microsoft.com\",\r\n \"publisherName\": \"ms@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-09T20:31:58.7574951Z\",\r\n \"gatewayUrl\": \"https://delete2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete2-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete2.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.161.106.62\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tuanguye@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-09T20:31:58.5769593Z\",\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-09T20:31:58.5769593Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/egtest-wcus\",\r\n \"name\": \"egtest-wcus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANt2s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-09T23:06:37.3004386Z\",\r\n \"gatewayUrl\": \"https://egtest-wcus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://egtest-wcus-westcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://egtest-wcus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://egtest-wcus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://egtest-wcus.management.azure-api.net\",\r\n \"scmUrl\": \"https://egtest-wcus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"egtest-wcus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.210.123\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitinConsumption2020\",\r\n \"name\": \"jitinConsumption2020\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"etag\": \"AAAAAAANzOg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-30T07:39:30.0173932Z\",\r\n \"gatewayUrl\": \"https://jitinconsumption2020.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitinconsumption2020.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SwitzerlandNorth-Canary\",\r\n \"name\": \"SwitzerlandNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"etag\": \"AAAAAAAMsVs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T19:05:04.4040373Z\",\r\n \"gatewayUrl\": \"https://switzerlandnorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"switzerlandnorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ICMs/providers/Microsoft.ApiManagement/service/icm-tests\",\r\n \"name\": \"icm-tests\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAKl0M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mohaidar@microsoft.com\",\r\n \"publisherName\": \"APIM PG\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-19T11:51:00.4814439Z\",\r\n \"gatewayUrl\": \"https://icm-tests.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://icm-tests-westindia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://icm-tests.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://icm-tests.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://icm-tests.management.azure-api.net\",\r\n \"scmUrl\": \"https://icm-tests.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"icm-tests.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.211.178.146\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mohaidar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-19T11:51:00.4361199Z\",\r\n \"lastModifiedBy\": \"mohaidar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-19T12:45:51.9519134Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WestIndia-Canary\",\r\n \"name\": \"WestIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West India\",\r\n \"etag\": \"AAAAAAAKw1s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:53.8127048Z\",\r\n \"gatewayUrl\": \"https://westindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"westindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/KoreaCentral-Canary\",\r\n \"name\": \"KoreaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"AAAAAAAKz9I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:39.9581781Z\",\r\n \"gatewayUrl\": \"https://koreacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"koreacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthAfricaNorth-Canary\",\r\n \"name\": \"SouthAfricaNorth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"etag\": \"AAAAAAAMBUg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:45:41.6554527Z\",\r\n \"gatewayUrl\": \"https://southafricanorth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southafricanorth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKWest-Canary\",\r\n \"name\": \"UKWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK West\",\r\n \"etag\": \"AAAAAAAPaQE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:59:01.8019107Z\",\r\n \"gatewayUrl\": \"https://ukwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ukwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/BrazilSouth-Canary\",\r\n \"name\": \"BrazilSouth-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"AAAAAAARrTc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:13.4420019Z\",\r\n \"gatewayUrl\": \"https://brazilsouth-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"brazilsouth-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-hkn-datatesting\",\r\n \"name\": \"jijohn-hkn-datatesting\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAANbGM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-03T01:31:50.1013434Z\",\r\n \"gatewayUrl\": \"https://jijohn-hkn-datatesting.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-hkn-datatesting-eastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-hkn-datatesting.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-hkn-datatesting.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-hkn-datatesting.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-hkn-datatesting.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-hkn-datatesting.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.187.161.21\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-03T01:31:49.3728612Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-03T01:31:49.3728612Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastAsia-Canary\",\r\n \"name\": \"EastAsia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"etag\": \"AAAAAAANkVc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T00:46:36.9340814Z\",\r\n \"gatewayUrl\": \"https://eastasia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastasia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthIndia-Canary\",\r\n \"name\": \"SouthIndia-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South India\",\r\n \"etag\": \"AAAAAAALd5g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:49:09.9271745Z\",\r\n \"gatewayUrl\": \"https://southindia-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southindia-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaCentral-Canary\",\r\n \"name\": \"CanadaCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"AAAAAAAQUe8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:48:43.0182697Z\",\r\n \"gatewayUrl\": \"https://canadacentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadacentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-11T19:23:50.8402652Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CanadaEast-Canary\",\r\n \"name\": \"CanadaEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"etag\": \"AAAAAAAJ8kI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-29T15:09:19.077246Z\",\r\n \"gatewayUrl\": \"https://canadaeast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"canadaeast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/ASE-Canary\",\r\n \"name\": \"ASE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"etag\": \"AAAAAAARFAQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:50:10.100096Z\",\r\n \"gatewayUrl\": \"https://ase-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ase-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanEast-Canary\",\r\n \"name\": \"JapanEast-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"etag\": \"AAAAAAAXVEw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-30T23:57:08.4035509Z\",\r\n \"gatewayUrl\": \"https://japaneast-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japaneast-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NCUS-Canary\",\r\n \"name\": \"NCUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWUEk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:24.8094208Z\",\r\n \"gatewayUrl\": \"https://ncus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ncus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-northcentraltest\",\r\n \"name\": \"gleb-northcentraltest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWqTo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"adsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-12T20:29:50.7685833Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-northcentraltest-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-northcentraltest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-northcentraltest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-northcentraltest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-northcentraltest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-northcentraltest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"65.52.240.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-04\",\r\n \"name\": \"jijohn-consumption-04\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWURY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-01T03:05:35.5949176Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-04.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-04.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/testapiservice1\",\r\n \"name\": \"testapiservice1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAV1qo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"samirsolanki@outlook.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2014-12-13T15:30:56.1167067Z\",\r\n \"gatewayUrl\": \"https://testapiservice1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice1-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice1.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.107.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption-06\",\r\n \"name\": \"jijohn-consumption-06\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWU+8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-16T17:22:24.5329871Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption-06.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption-06.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/apimcoldstart\",\r\n \"name\": \"apimcoldstart\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAWURE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim cold start\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-15T22:46:02.8944291Z\",\r\n \"gatewayUrl\": \"https://apimcoldstart.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimcoldstart.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SEA-Canary\",\r\n \"name\": \"SEA-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAVEhM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"SEA-Canary\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-12T00:56:05.1041042Z\",\r\n \"gatewayUrl\": \"https://sea-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sea-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-forwarded-southeastasia-01\",\r\n \"name\": \"jijohn-forwarded-southeastasia-01\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAUsVc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-26T19:12:20.269709Z\",\r\n \"gatewayUrl\": \"https://jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-forwarded-southeastasia-01-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-forwarded-southeastasia-01.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-forwarded-southeastasia-01.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-forwarded-southeastasia-01.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-forwarded-southeastasia-01.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-forwarded-southeastasia-01.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.67.35.216\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/seasia-test\",\r\n \"name\": \"seasia-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAUskg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"tdtdrtr\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-20T02:27:41.6012757Z\",\r\n \"gatewayUrl\": \"https://seasia-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seasia-test-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seasia-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seasia-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seasia-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seasia-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seasia-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.187.71.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fed-sea1\",\r\n \"name\": \"jitin-fed-sea1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAAWVsc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-28T00:41:44.8922579Z\",\r\n \"gatewayUrl\": \"https://jitin-fed-sea1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fed-sea1-southeastasia-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fed-sea1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fed-sea1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fed-sea1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fed-sea1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fed-sea1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.76.158.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/msic2dtest\",\r\n \"name\": \"msic2dtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgJLg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-18T10:31:02.3767262Z\",\r\n \"gatewayUrl\": \"https://msic2dtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://msic2dtest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://msic2dtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://msic2dtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://msic2dtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://msic2dtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"msic2dtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.17.207\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/glebrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mitest\": {\r\n \"principalId\": \"16a25af3-e38f-46fb-a7a9-2206552fb4af\",\r\n \"clientId\": \"e42a5c25-1406-4683-90f8-30b42b84ef98\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alzaslonfuncapp/providers/Microsoft.ApiManagement/service/Devops-lrp\",\r\n \"name\": \"Devops-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAf5AY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-12T00:00:24.5450525Z\",\r\n \"gatewayUrl\": \"https://devops-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devops-lrp-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devops-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devops-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devops-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devops-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devops-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contoso.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-dev-keyvault.vault.azure.net/secrets/MsiTesting\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2023-01-16T10:34:25-08:00\",\r\n \"thumbprint\": \"0595C63B10FF3DF904D1E6FD5663DABDEC5E0FBB\",\r\n \"subject\": \"CN=*.apim.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"KeyVault\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.77.162.162\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4cef27e1-7082-4a28-9772-5336e3f5cf7e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS2-Canary\",\r\n \"name\": \"WUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAe5dY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:12.1377274Z\",\r\n \"gatewayUrl\": \"https://wus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption\",\r\n \"name\": \"kjoshiconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAe6IE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-05T17:15:09.5924701Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"aa80091d-9ebb-43a7-a173-b83329bfb874\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnet\",\r\n \"name\": \"tehnoonr-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAejdw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-21T19:31:01.6390797Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"therazaportal.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:13:58-08:00\",\r\n \"thumbprint\": \"80D20AE4474CB5A3BBC0223DCBFE769AD7CF4AFE\",\r\n \"subject\": \"CN=therazaportal.apim.net, O=Microsoft, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Management\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"therazagateway.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2026-03-07T16:59:25-08:00\",\r\n \"thumbprint\": \"2CD4A000FF359E07B9CCD12D5FC938CD7ECB6D6E\",\r\n \"subject\": \"E=tehnoonr@hotmail.com, CN=therazagateway.apim.net, OU=TheRaza, O=TheRaza, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.115.192.52\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.Network/virtualNetworks/kjoshiextvnet/subnets/kjoshi-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.Network/publicIPAddresses/tehnoonr-public-latest\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tehnoonr@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-02T18:41:47.7475697Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-east-us-2-euap/providers/Microsoft.ApiManagement/service/setup-apim-westus2\",\r\n \"name\": \"setup-apim-westus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAelsE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-29T20:31:21.924559Z\",\r\n \"gatewayUrl\": \"https://setup-apim-westus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://setup-apim-westus2-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://setup-apim-westus2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://setup-apim-westus2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://setup-apim-westus2.management.azure-api.net\",\r\n \"scmUrl\": \"https://setup-apim-westus2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"setup-apim-westus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.91.93.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-07-29T20:31:21.6325933Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-07-29T20:31:21.6325933Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2testasync2\",\r\n \"name\": \"kjoshiwus2testasync2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgJP8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-02T03:13:15.7768813Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2testasync2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2testasync2-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2testasync2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2testasync2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2testasync2.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2testasync2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2testasync2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.137.97.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-02T03:13:15.6254954Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T03:13:15.6254954Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsumption2\",\r\n \"name\": \"kjoshiconsumption2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAe6tg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-07T21:52:02.2250806Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsumption2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumption2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg\",\r\n \"name\": \"kjoshiwus2arg\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAfesE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-30T02:58:22.6286471Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2arg.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2arg-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2arg.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2arg.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2arg.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2arg.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2arg.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.121.1\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg/privateEndpointConnections/backendoutboundkjoshi\",\r\n \"name\": \"backendoutboundkjoshi\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/kjoshitest/providers/Microsoft.Network/privateEndpoints/backendoutboundkjoshi\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg/privateEndpointConnections/backendpe\",\r\n \"name\": \"backendpe\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/39fa9e43-8dfd-45d1-9ada-f14cabfed178/resourceGroups/kjoshipee2e-JPw1cIpOsVnVOWZKTG1opfszshqGY7RFpr3Vg4/providers/Microsoft.Network/privateEndpoints/backendpe\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve PE connetion from APIM.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2arg/privateEndpointConnections/tenantbackendpe\",\r\n \"name\": \"tenantbackendpe\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/39fa9e43-8dfd-45d1-9ada-f14cabfed178/resourceGroups/kjoshipee2e-JPw1cIpOsVnVOWZKTG1opfszshqGY7RFpr3Vg4/providers/Microsoft.Network/privateEndpoints/tenantbackendpe\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve PE connetion from APIM.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d0cb38b3-34f7-4e7a-84d7-5c66ef7cfed8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-30T02:58:21.8291788Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-04T03:07:31.6380393Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off\",\r\n \"name\": \"gleb-corr-off\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAffQ8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"foo\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:11:18.1464015Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.14.169\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest-vnet\",\r\n \"name\": \"vvktest-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAel70=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest-vnet\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-25T15:57:02.5153906Z\",\r\n \"gatewayUrl\": \"https://vvktest-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vvktest-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vvktest-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vvktest-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vvktest-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://vvktest-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.80.158.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/vvktest/providers/microsoft.network/virtualnetworks/vvktest/subnets/subnet-2\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.Network/publicIPAddresses/vvktest\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"vitaliik@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-25T15:57:02.2067169Z\",\r\n \"lastModifiedBy\": \"vitaliik@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-08T18:09:37.0116834Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test\",\r\n \"name\": \"alanfeng-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgVhY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T00:54:33.1727007Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alanfeng-test-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alanfeng-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alanfeng-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alanfeng-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://alanfeng-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.148.165.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"vatsapatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-08T22:59:30.2086539Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/andyhaverly/providers/Microsoft.ApiManagement/service/andyhaverly-basic\",\r\n \"name\": \"andyhaverly-basic\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgEIU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"andyhaverly@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-10T20:48:59.2923617Z\",\r\n \"gatewayUrl\": \"https://andyhaverly-basic.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://andyhaverly-basic-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://andyhaverly-basic.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://andyhaverly-basic.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://andyhaverly-basic.management.azure-api.net\",\r\n \"scmUrl\": \"https://andyhaverly-basic.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"andyhaverly-basic.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.69.173.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"andyhaverly@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-10T20:48:59.1482014Z\",\r\n \"lastModifiedBy\": \"andyhaverly@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T20:48:59.1482014Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-on\",\r\n \"name\": \"gleb-corr-on\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAeWFM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"asdasdasd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-17T18:01:45.0345532Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-on.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-on-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-on.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-on.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-on.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-on.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-on.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.247.221.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vvktest/providers/Microsoft.ApiManagement/service/vvktest\",\r\n \"name\": \"vvktest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgCeA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"vvktest\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-15T03:23:47.745102Z\",\r\n \"gatewayUrl\": \"https://vvktest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vvktest-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vvktest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vvktest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vvktest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vvktest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vvktest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.69.86.144\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"312e0870-d903-483b-9620-d74a499686f0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"vitaliik@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-15T03:23:47.6320751Z\",\r\n \"lastModifiedBy\": \"vitaliik@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T00:24:59.9096778Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vmss-vnet\",\r\n \"name\": \"tehnoonr-vmss-vnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"trere\": \"fdfd\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAel7c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-27T21:23:44.1115799Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vmss-vnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vmss-vnet-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vmss-vnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vmss-vnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vmss-vnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vmss-vnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vmss-vnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"therazamanagement.apim.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2025-11-18T13:01:32-08:00\",\r\n \"thumbprint\": \"EE7C5DC74DF5C41115DD39DDE2A0719AB36E2E12\",\r\n \"subject\": \"CN=therazamanagement.apim.net, O=TheRazas, L=Plano, S=TX, C=US\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Custom\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.82.14\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-sf-westus2/providers/Microsoft.Network/virtualNetworks/kjoshi-serviceendponit/subnets/mynewsubnet2\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.Network/publicIPAddresses/tehnoonr-publicip-westus2-new\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tehnoonr@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-13T19:42:34.4010528Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/gleb-ai/providers/Microsoft.ApiManagement/service/gleb-trace\",\r\n \"name\": \"gleb-trace\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAffPw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dfsdfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-16T19:32:41.6343295Z\",\r\n \"gatewayUrl\": \"https://gleb-trace.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-trace-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-trace.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-trace.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-trace.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-trace.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-trace.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.143.8.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/debugger/providers/Microsoft.ApiManagement/service/debugger\",\r\n \"name\": \"debugger\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mijiang\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAfmp4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-26T20:32:34.0546555Z\",\r\n \"gatewayUrl\": \"https://debugger.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://debugger-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://debugger.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://debugger.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://debugger.management.azure-api.net\",\r\n \"scmUrl\": \"https://debugger.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"debugger.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.183.42.48\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.ApiManagement/service/dapr-call\",\r\n \"name\": \"dapr-call\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"mkim\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAek+g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mkim@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-28T19:13:58.8059982Z\",\r\n \"gatewayUrl\": \"https://dapr-call.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dapr-call-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dapr-call.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dapr-call.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dapr-call.management.azure-api.net\",\r\n \"scmUrl\": \"https://dapr-call.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dapr-call.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.23.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2testasync\",\r\n \"name\": \"kjoshiwus2testasync\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAegCo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-02T03:12:56.0612854Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2testasync.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2testasync-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2testasync.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2testasync.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2testasync.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2testasync.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2testasync.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.99.136.84\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-02T03:12:55.9342176Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T03:12:55.9342176Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-reserved-ip/providers/Microsoft.ApiManagement/service/apim-reserved-ip\",\r\n \"name\": \"apim-reserved-ip\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgP+Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-01-27T23:49:34.8723514Z\",\r\n \"gatewayUrl\": \"https://apim-reserved-ip.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-reserved-ip-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-reserved-ip.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-reserved-ip.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-reserved-ip.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-reserved-ip.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-reserved-ip.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.151.16.119\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiwus2test\",\r\n \"name\": \"kjoshiwus2test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAef3k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-02T03:07:06.5247717Z\",\r\n \"gatewayUrl\": \"https://kjoshiwus2test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiwus2test-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiwus2test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiwus2test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiwus2test.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiwus2test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiwus2test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.149.19.221\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-02T03:07:05.6948749Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T03:07:05.6948749Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/femeji-rg/providers/Microsoft.ApiManagement/service/femeji-early-bits\",\r\n \"name\": \"femeji-early-bits\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAenL8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"femeji@microsoft.com\",\r\n \"publisherName\": \"femeji-early-bits\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-08T18:41:45.2243205Z\",\r\n \"gatewayUrl\": \"https://femeji-early-bits.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://femeji-early-bits-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://femeji-early-bits.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://femeji-early-bits.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://femeji-early-bits.management.azure-api.net\",\r\n \"scmUrl\": \"https://femeji-early-bits.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"femeji-early-bits.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.64.136.215\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"femeji@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-08T18:41:45.1403513Z\",\r\n \"lastModifiedBy\": \"femeji@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-08T18:41:45.1403513Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-resources/providers/Microsoft.ApiManagement/service/tehnoonr-vnetbadcert\",\r\n \"name\": \"tehnoonr-vnetbadcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAfx1o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-19T20:02:03.0283499Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-vnetbadcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-vnetbadcert-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-vnetbadcert.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-vnetbadcert.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-vnetbadcert.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-vnetbadcert.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-vnetbadcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.158.252.155\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/CloudServiceTest\",\r\n \"name\": \"CloudServiceTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAlvQ0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-13T19:56:15.4310419Z\",\r\n \"gatewayUrl\": \"https://cloudservicetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cloudservicetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cloudservicetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cloudservicetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cloudservicetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://cloudservicetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cloudservicetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.98.184.231\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/vscodetest3\",\r\n \"name\": \"vscodetest3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAmf6M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:37:34.6402046Z\",\r\n \"gatewayUrl\": \"https://vscodetest3.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883\",\r\n \"name\": \"ps2883\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof0Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T08:43:34.064822Z\",\r\n \"gatewayUrl\": \"https://ps2883.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2883-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2883.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2883.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2883.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2883.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2883.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.244.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T08:43:33.9166428Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:43:33.9166428Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ContosoGroup02/providers/Microsoft.ApiManagement/service/ContosoApi2\",\r\n \"name\": \"ContosoApi2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAnX1s=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"admin@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-24T22:34:12.7640649Z\",\r\n \"gatewayUrl\": \"https://contosoapi2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://contosoapi2-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://contosoapi2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://contosoapi2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://contosoapi2.management.azure-api.net\",\r\n \"scmUrl\": \"https://contosoapi2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"contosoapi2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.240.65\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/anan68/providers/Microsoft.ApiManagement/service/anan68-apim\",\r\n \"name\": \"anan68-apim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAm85o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"anandareddys@microsoft.com\",\r\n \"publisherName\": \"microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-24T17:13:29.0705455Z\",\r\n \"gatewayUrl\": \"https://anan68-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://anan68-apim-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://anan68-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://anan68-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://anan68-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://anan68-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"anan68-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.1.214\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-24T17:13:28.9585152Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-24T17:13:28.9585152Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tehnoonr-apim/providers/Microsoft.ApiManagement/service/tehnoonr-apim3\",\r\n \"name\": \"tehnoonr-apim3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tehnoonr\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAnxOU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tehnoonr@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T16:25:34.5489001Z\",\r\n \"gatewayUrl\": \"https://tehnoonr-apim3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tehnoonr-apim3-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tehnoonr-apim3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tehnoonr-apim3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tehnoonr-apim3.management.azure-api.net\",\r\n \"scmUrl\": \"https://tehnoonr-apim3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tehnoonr-apim3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.198.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e67f9e1e-6763-4024-8ee1-720d667cb148\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUS-Canary\",\r\n \"name\": \"CUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAmgIE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:47:24.9248008Z\",\r\n \"gatewayUrl\": \"https://cus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Vscodetestrg/providers/Microsoft.ApiManagement/service/VscodeTest\",\r\n \"name\": \"VscodeTest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAnNpM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"rupliu@microsoft.com\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-09-08T21:00:50.8875823Z\",\r\n \"gatewayUrl\": \"https://vscodetest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vscodetest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vscodetest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vscodetest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vscodetest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vscodetest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vscodetest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.73.40\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jbtests-rg/providers/Microsoft.ApiManagement/service/jbtests-ApiManagement\",\r\n \"name\": \"jbtests-ApiManagement\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAl/38=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"javierbo@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-19T18:03:33.0240925Z\",\r\n \"gatewayUrl\": \"https://jbtests-apimanagement.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jbtests-apimanagement-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jbtests-apimanagement.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jbtests-apimanagement.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jbtests-apimanagement.management.azure-api.net\",\r\n \"scmUrl\": \"https://jbtests-apimanagement.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jbtests-apimanagement.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.86.36.183\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"javierbo@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-19T18:03:32.8839746Z\",\r\n \"lastModifiedBy\": \"javierbo@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-19T18:03:32.8839746Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976\",\r\n \"name\": \"ps4976\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof9E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T09:44:52.8608536Z\",\r\n \"gatewayUrl\": \"https://ps4976.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4976-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4976.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4976.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4976.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4976.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4976.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.21.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T09:44:52.826263Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T09:44:52.826263Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/UKS-Canary\",\r\n \"name\": \"UKS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"UK South\",\r\n \"etag\": \"AAAAAAAh0M4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:46:47.9089467Z\",\r\n \"gatewayUrl\": \"https://uks-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uks-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-aueast\",\r\n \"name\": \"gleb-aueast\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAclCo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"czxczxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-25T21:13:49.2851403Z\",\r\n \"gatewayUrl\": \"https://gleb-aueast.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-aueast.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AUE-Canary\",\r\n \"name\": \"AUE-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia East\",\r\n \"etag\": \"AAAAAAAdaUM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T19:35:39.0272012Z\",\r\n \"gatewayUrl\": \"https://aue-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aue-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"freeCertAUEConsumption.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-09-03T16:59:59-07:00\",\r\n \"thumbprint\": \"E636E79B79386AC87886916E779805B1CA8750BA\",\r\n \"subject\": \"CN=freecertaueconsumption.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Managed\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-03T20:18:43.7460489Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/JapanWest-Canary\",\r\n \"name\": \"JapanWest-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"etag\": \"AAAAAAAKTu8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T15:51:51.233468Z\",\r\n \"gatewayUrl\": \"https://japanwest-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"japanwest-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/ogf\",\r\n \"name\": \"ogf\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqZ5I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-08T18:11:26.9902003Z\",\r\n \"gatewayUrl\": \"https://ogf.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogf-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogf.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogf.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogf.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogf.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogf.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.118.248.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/igo-test/providers/Microsoft.ApiManagement/service/igo-test\",\r\n \"name\": \"igo-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"igo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAr8I8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"igo@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-09-19T18:40:24.5701371Z\",\r\n \"gatewayUrl\": \"https://igo-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://igo-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://igo-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://igo-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://igo-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://igo-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"igo-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.78.59.77\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"igo@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-13T20:43:13.3055918Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohndiagnosticlogs\",\r\n \"name\": \"jijohndiagnosticlogs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqP3M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"MSFT\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-02-01T20:53:45.1477718Z\",\r\n \"gatewayUrl\": \"https://jijohndiagnosticlogs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohndiagnosticlogs-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohndiagnosticlogs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohndiagnosticlogs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohndiagnosticlogs.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohndiagnosticlogs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohndiagnosticlogs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.99.64.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-d4qshnj7tuycgowxi2sx6cuh2h4gz44wmblo6mly6fg3ydywx76csqi7tukth/providers/Microsoft.ApiManagement/service/cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt\",\r\n \"name\": \"cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsnbM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:51:37.5936492Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-b6vnwrbm37f6oxu2wwjl77zfnqvi53gnw5bt.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.130.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e30578c5-317d-4153-bc5e-d32e705faae8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:51:36.9195743Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:51:36.9195743Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-vmss-test\",\r\n \"name\": \"jijohn-vmss-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqb7Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@msft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-19T01:16:45.8564989Z\",\r\n \"gatewayUrl\": \"https://jijohn-vmss-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-vmss-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-vmss-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-vmss-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-vmss-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-vmss-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-vmss-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.211.60\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.16.5.5\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.Network/virtualNetworks/vnet01/subnets/subnet-1\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-19T01:16:45.7101852Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-19T01:16:45.7101852Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/multiregiondisablesecondary\",\r\n \"name\": \"multiregiondisablesecondary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqkSc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-03-30T19:16:11.2793778Z\",\r\n \"gatewayUrl\": \"https://multiregiondisablesecondary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://multiregiondisablesecondary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://multiregiondisablesecondary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://multiregiondisablesecondary.management.azure-api.net\",\r\n \"scmUrl\": \"https://multiregiondisablesecondary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"multiregiondisablesecondary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.99.158\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"40.117.56.33\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://multiregiondisablesecondary-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gconsumption\",\r\n \"name\": \"gconsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArVW0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"gdfgdfg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-27T19:18:55.5935623Z\",\r\n \"gatewayUrl\": \"https://gconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-e6liz7fjs3wguyx57sqxjdwqbfxots3uyewltemtfbujtxhwqnzayaejs7iyp/providers/Microsoft.ApiManagement/service/cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su\",\r\n \"name\": \"cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrlk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:37:01.4452569Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-clpqxrdevfn25goqfefbzqgk6g6nh6hgm2su.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.247.146\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"598bce42-78c4-4e1f-a1d1-68565f0e9860\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:37:00.633521Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:37:00.633521Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-inittest\",\r\n \"name\": \"gleb-inittest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAru0M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dsfsdfsdfs\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-02-19T00:43:17.2463706Z\",\r\n \"gatewayUrl\": \"https://gleb-inittest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-inittest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-inittest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-inittest.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-inittest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-inittest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.172.238\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.16.4.12\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": [],\r\n \"publicIPAddresses\": [\r\n \"40.87.91.146\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.24.0.4\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Nico2/providers/Microsoft.Network/virtualNetworks/Nico-vnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://gleb-inittest-eastus-01.regional.azure-api.net\",\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/publicIPAddresses/east-us\",\r\n \"platformVersion\": \"stv2\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"e49076f0-829d-4af8-a0d3-3655f3e9161d\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"3c23e6d8-0aaa-4af7-b4e4-68b8591df1ed\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"mohaidar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-24T09:09:06.778424Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test3\",\r\n \"name\": \"jitin-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArDcc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"asd@m.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:24:33.8034229Z\",\r\n \"gatewayUrl\": \"https://jitin-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-test3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.171.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/aztest\",\r\n \"name\": \"aztest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"cffd\": \"acs-dcos-agent-private-1646DB44-vmss0\",\r\n \"My lovely tag\": \"My lovely tag value\",\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqPsQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"API Management UXX\",\r\n \"notificationSenderEmail\": \"contoso@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-03-24T21:24:07.2813367Z\",\r\n \"gatewayUrl\": \"https://aztest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://aztest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://aztest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://aztest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://aztest.management.azure-api.net\",\r\n \"scmUrl\": \"https://aztest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"aztest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.62.195.148\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2024-05-20T04:42:43-07:00\",\r\n \"thumbprint\": \"E3FFF41A233917FCEDDCDB4EB47B26F171E34A63\",\r\n \"subject\": \"CN=*.apim.dev\"\r\n }\r\n },\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2036-06-28T08:37:53-07:00\",\r\n \"thumbprint\": \"C5091132E9ADF8AD3E33932AE60A5C8FA939E824\",\r\n \"subject\": \"CN=Cisco Umbrella Root CA, O=Cisco\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"9b681823-8edc-4e3e-84e4-4a5616a2f28b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"vitaliik@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-21T00:15:01.1818984Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-zrqrirgzktogs6coqf6yofyuhv4nqzynf5cyax2clix6kd6sf5zwgyekzsoy2/providers/Microsoft.ApiManagement/service/cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki\",\r\n \"name\": \"cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAskd0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T00:38:02.9332616Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-bzujrsrrcgaghxp5zykoxkyuxo2bwiyfduki.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.5.149\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a8afa9d1-1b29-4e20-a220-cac781f59959\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T00:38:02.066223Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T00:38:02.066223Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-fknqoauvkg6xcyj4qwujy6i6csiwbblkmek2idrba4twfta2t7p6imjg4iwun/providers/Microsoft.ApiManagement/service/cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy\",\r\n \"name\": \"cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrls=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:33:03.4800571Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-gryv2ilcftrakqpykrdwvahtwkagg7mxkwwy.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.238.26.94\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"7ad9e8d2-d885-4027-86fc-8416499257f2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:33:02.6809808Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:33:02.6809808Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-fre7pftuev5eug3q3gqnog5wh4qi7muvrecwdowjm3ynx7gknfk3pohn2rg25/providers/Microsoft.ApiManagement/service/cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg\",\r\n \"name\": \"cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAs9Ns=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T01:20:28.8637052Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-4sh3pwew6zbu4imddlv4sb26yp4bqddozzlg.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.157.3.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d8cae39c-7f44-48b1-b23e-5e177c3c416c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T01:20:27.946628Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T01:20:27.946628Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-qeorm74brjcb5m3eg4pktmujbqfmbwvhqvs522q5i65syt4ytpgdnkevkctwr/providers/Microsoft.ApiManagement/service/cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52\",\r\n \"name\": \"cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsncg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:56:36.490636Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-2aolrv6y2bnpkx33czqca5464wp5dxqqvv52.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.225.33.27\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1b644550-bba9-4b56-9b56-ba1cd2790d79\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:56:35.6955601Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:56:35.6955601Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-qxq6qtnqu234rp46owzvca76wsrpdpkss36l3nk57g4zoh34cl6ldfm4sqlzs/providers/Microsoft.ApiManagement/service/cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2\",\r\n \"name\": \"cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslTg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:57:58.6370484Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-ynjolpa5fyismb6xhli25gf2bh3whsvir5b2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.88.181.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"afe0b715-6667-4a7b-b8d2-1b85eca5eca4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:57:57.6778802Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:57:57.6778802Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-jgdwdpx234exny3uy5cl2x4wnupvbhdlk4h6flhvfxq5xgdc4flar73jdgtsa/providers/Microsoft.ApiManagement/service/cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw\",\r\n \"name\": \"cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAskn8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T01:13:42.0252378Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-x2kagqc3fdyk5xt3gxx6qt3535r4sj3klenw.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.164.75\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"8a143b9a-231d-472c-9d6f-6f31fafceacd\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T01:13:41.0962566Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T01:13:41.0962566Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-test2\",\r\n \"name\": \"jitin-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArT6o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T15:34:55.8132257Z\",\r\n \"gatewayUrl\": \"https://jitin-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-jpoiw5jgref3xau7ghtkpmy3xoxw3q76zwe5fvp7row2kwozdqrr55lm4xi76/providers/Microsoft.ApiManagement/service/cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4\",\r\n \"name\": \"cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslTo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:52:56.7873072Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-mcrsy4qncothhwgbwdghcwrc6vc4zcayvlp4.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.157.0.186\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"851f5b0c-1188-402b-a23f-2c0e00bdec7e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:52:55.7777246Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:52:55.7777246Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-6wv3qhg7nlqdwy6qlagkctjtzx77gle7fuccple4aecr4jqnqfxl23vqbhnv7/providers/Microsoft.ApiManagement/service/cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2\",\r\n \"name\": \"cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsnas=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:51:36.5049766Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-lzhuil5cv75t7sdos4262mutdhe5m63yjcs2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.176.127\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"67341146-2ece-4968-9187-ad1fa9956449\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:51:35.5902005Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:51:35.5902005Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-imi4zg5d2otk4w4adab5lbzrlzn2yo5cynnd3c6aawd46kfo6tuv67hqbhoxp/providers/Microsoft.ApiManagement/service/cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg\",\r\n \"name\": \"cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslT0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:57:57.218577Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-th7pomu2tlp4jvdlk2unzwcarf4cmqiwcjjg.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.190.188.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"476a0244-1799-4be2-a7a7-2c7f3640fd45\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:57:56.4680929Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:57:56.4680929Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-3opisacnkuqamgk7dy3murskkusdbanb6phnhgd7oz7uqygzvlzi4yuch3qkk/providers/Microsoft.ApiManagement/service/cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x\",\r\n \"name\": \"cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAspC0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T01:28:34.4997878Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-tj2fdufg5rulq5mblkir66nkrn4jaywrs56x.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.86.162.253\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e1b78bfa-db48-4982-ad79-fb45b1cd6473\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T01:28:33.5214434Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T01:28:33.5214434Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimanagement-cors-proxy-df/providers/Microsoft.ApiManagement/service/apimanagement-cors-proxy-df\",\r\n \"name\": \"apimanagement-cors-proxy-df\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqPsY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"Azure API Management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-09-14T01:35:21.371366Z\",\r\n \"gatewayUrl\": \"https://apimanagement-cors-proxy-df.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apimanagement-cors-proxy-df-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apimanagement-cors-proxy-df.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apimanagement-cors-proxy-df.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apimanagement-cors-proxy-df.management.azure-api.net\",\r\n \"scmUrl\": \"https://apimanagement-cors-proxy-df.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apimanagement-cors-proxy-df.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.106.204\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/devenv\",\r\n \"name\": \"devenv\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vitaliik\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqPuQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vitaliik@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2017-05-05T23:07:15.5827029Z\",\r\n \"gatewayUrl\": \"https://devenv.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devenv-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devenv.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devenv.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devenv.management.azure-api.net\",\r\n \"scmUrl\": \"https://devenv.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devenv.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.160.94.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US-2/providers/Microsoft.Network/virtualNetworks/azvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": [],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"a44deed2-da94-49f2-a0e2-16337bdc59fe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tomkerkhove@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-10T10:31:43.9983185Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-q6pcnzmrlkxasj2qjs5rugneajj2v2jlolbyem4kcbiy73u6rtmewekca2xf7/providers/Microsoft.ApiManagement/service/cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp\",\r\n \"name\": \"cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAspic=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T03:42:51.7246806Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-7xdrjc3ddkt3xoofxgmht6xdc72chdsj35kp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.68.194\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"95b89516-b162-44d8-a777-c5e97c8e1b0a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T03:42:50.9396693Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T03:42:50.9396693Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-crgsdft3bdb6lr5y66pxp24fjez3d6kegdyzgm4nxsqk4b2l2llt2qfnpwfqd/providers/Microsoft.ApiManagement/service/cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4\",\r\n \"name\": \"cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsojM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T22:34:47.7347765Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-7gyw3j4kwm2rvbgjqkyxernvaxhuq2mhfvk4.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.1.215\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"518bbcb6-2d44-4f68-b276-f67c2531602a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T22:34:46.7832405Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T22:34:46.7832405Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/cons2ded-0\",\r\n \"name\": \"cons2ded-0\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqiR4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dasdasa\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-01T01:37:36.7900101Z\",\r\n \"gatewayUrl\": \"https://cons2ded-0.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cons2ded-0-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cons2ded-0.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cons2ded-0.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cons2ded-0.management.azure-api.net\",\r\n \"scmUrl\": \"https://cons2ded-0.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cons2ded-0.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.75.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-01T01:37:36.7381681Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WUS-Canary\",\r\n \"name\": \"WUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArRCI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:57:07.2773048Z\",\r\n \"gatewayUrl\": \"https://wus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vatsapatel/providers/Microsoft.ApiManagement/service/vatsa-test\",\r\n \"name\": \"vatsa-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqihM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vatsapatel@microsoft.com\",\r\n \"publisherName\": \"vatsa-test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-02T23:59:21.1383489Z\",\r\n \"gatewayUrl\": \"https://vatsa-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vatsa-test-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vatsa-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vatsa-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vatsa-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://vatsa-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vatsa-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.43.246.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/AndyTest/providers/Microsoft.Network/virtualNetworks/AndyTest/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"vatsapatel@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-02T23:59:21.0726541Z\",\r\n \"lastModifiedBy\": \"vatsapatel@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-02T23:59:21.0726541Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/serverless\",\r\n \"name\": \"serverless\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArSLs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-19T21:41:06.5566242Z\",\r\n \"gatewayUrl\": \"https://serverless.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"serverless.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-nzfzvl43itgwhrllcrdnhgwgtfstdu53366teo53w6uxplgsyivsqycbadyke/providers/Microsoft.ApiManagement/service/cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct\",\r\n \"name\": \"cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsodM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T22:13:03.5146644Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-piqyeqr5qk6kx5vywyeag73vgqepi3l2nqct.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.90.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4065881e-8a1f-4345-a639-92acbcd66bed\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T22:13:02.5140895Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T22:13:02.5140895Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-up3auitlcgpobphqiovy7anxxvd54j5e7po7soy4wfvielh7cl2h5x2dxlumo/providers/Microsoft.ApiManagement/service/cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav\",\r\n \"name\": \"cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAskqc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T01:19:26.7266062Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-b4rax273jofrkr7dxsrbttljwwu2io3d2lav.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.16.192\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f39b06a1-4323-4793-a03d-a0fd3b61af2f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T01:19:25.8234763Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T01:19:25.8234763Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test2\",\r\n \"name\": \"alanfeng-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArUC0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@example.com\",\r\n \"publisherName\": \"Publisher\",\r\n \"notificationSenderEmail\": \"publisher@example.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-21T23:49:32.5193553Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apimmonetization/providers/Microsoft.ApiManagement/service/alzaslonmonetization20110708\",\r\n \"name\": \"alzaslonmonetization20110708\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAqaAM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:22:28.1527262Z\",\r\n \"gatewayUrl\": \"https://alzaslonmonetization20110708.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslonmonetization20110708-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslonmonetization20110708.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslonmonetization20110708.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslonmonetization20110708.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslonmonetization20110708.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslonmonetization20110708.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.112.250.184\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"fc5c18d2-0309-4b38-8c2a-f548b5e06ee3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestAPIManage123\",\r\n \"name\": \"TestAPIManage123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsBYE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPI\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-11T14:24:14.6253855Z\",\r\n \"gatewayUrl\": \"https://testapimanage123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapimanage123-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapimanage123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapimanage123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapimanage123.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapimanage123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapimanage123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.40.7.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/gleb-corr-off2\",\r\n \"name\": \"gleb-corr-off2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAr8KU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dassdsada\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-06-25T22:58:27.2967081Z\",\r\n \"gatewayUrl\": \"https://gleb-corr-off2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://gleb-corr-off2-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://gleb-corr-off2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://gleb-corr-off2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://gleb-corr-off2.management.azure-api.net\",\r\n \"scmUrl\": \"https://gleb-corr-off2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gleb-corr-off2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.252.30\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"54c1d67c-4a66-40e2-859c-eaf32dbd00ff\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-qvmex6iozruglhn6yliyknehd36os4mjmbxc2ouwstl2ir263q3yl5mexu42r/providers/Microsoft.ApiManagement/service/cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz\",\r\n \"name\": \"cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsnkU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T17:25:00.8963031Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-l5xbbgdfbhd4mcoljpr235cgoaj64tkfnfyz.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.91.61.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f7de845e-a1cb-4e6d-b2ea-2aeffa62416e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T17:24:59.3017931Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T17:24:59.3017931Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-izhfbzyxp5bafmrlgplecngzygo5t4pfrxpzcjctcriq7jfpsew7yberpgneg/providers/Microsoft.ApiManagement/service/cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e\",\r\n \"name\": \"cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAslT8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T04:52:53.2639684Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-2rh5tngkxqnhmx64a2cc7sxhmhezsetaqj3e.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.234.29.5\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"53c72149-0f06-448c-9e75-d529986e5469\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T04:52:52.5732385Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T04:52:52.5732385Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-yfl63ymcoljpjxd2cqg6teurjtwwl46qbfzfoo6nv43tg3dxa7lbwk4v5y3k6/providers/Microsoft.ApiManagement/service/cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3\",\r\n \"name\": \"cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrk0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:29:48.0351291Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-uwieaqspadfzwbtvbefpo22vy27bwaanozc3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.86.226.69\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f0ad9d22-0b0d-4fc9-b7fd-bf15f2a37794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:29:47.1191171Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:29:47.1191171Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshi-57-outage/providers/Microsoft.ApiManagement/service/kjoshisncablecut\",\r\n \"name\": \"kjoshisncablecut\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsSBg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"sfdasdf\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-16T17:52:35.2856029Z\",\r\n \"gatewayUrl\": \"https://kjoshisncablecut.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisncablecut-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisncablecut.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisncablecut.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisncablecut.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisncablecut.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisncablecut.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.64.117.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"14d2a59a-3ef8-4cf7-b783-66fa6d9ac26b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-w27gbhkof3zzm3k6psn4mxfnpnws4ma5ydwcjx7bpsrdo7otsczjt2qdojh3h/providers/Microsoft.ApiManagement/service/cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep\",\r\n \"name\": \"cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsniA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T16:56:33.5287739Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-g6w7du2loybeyk6brtgqto7idjdjtqbrpaep.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"138.91.249.90\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4967c7c7-ba8d-49b4-9c74-1cd90d9d2ccc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T16:56:32.5660407Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T16:56:32.5660407Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-jgv4h4y2v35jw3xc4enzgbqpqd4nnsud3y2732q24jn62qt2kki2qcafrdubw/providers/Microsoft.ApiManagement/service/cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm\",\r\n \"name\": \"cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAsrkc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-09T15:32:05.3958438Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-yxanphwrwvcbkpfj47to6p2i7i367fm3s4cm.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.83.7.102\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2eae9d69-6503-4e6a-95bd-7c3bbf7ac1a3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-09T15:32:04.3582955Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-09T15:32:04.3582955Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-consumption\",\r\n \"name\": \"jijohn-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArRRk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-03-19T23:08:06.4716339Z\",\r\n \"gatewayUrl\": \"https://jijohn-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"41128fb9-0565-4a21-ad64-ef9282afb49c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cli_test_apim-nb4gze6lyks53rpvp4jdkfxaukzwzfksnb4hjo2wptftld734z6bkf5xdfgqw/providers/Microsoft.ApiManagement/service/cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7\",\r\n \"name\": \"cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAske4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"publisher@contoso.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"publisher@contoso.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T00:38:04.8421304Z\",\r\n \"gatewayUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7-wu-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.management.azure-api.net\",\r\n \"scmUrl\": \"https://cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cli-test-apim-smbatcxxsnezqb434mqav622rc2f2luxtsv7.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.190.251.73\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"d2d94145-bfcb-4b6a-a6df-6d33e8ab7e8e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"anandareddys@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T00:38:03.6298157Z\",\r\n \"lastModifiedBy\": \"anandareddys@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T00:38:03.6298157Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/testapiservice3\",\r\n \"name\": \"testapiservice3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAr8I0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mtuchkov@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-07T23:22:14.4260358Z\",\r\n \"gatewayUrl\": \"https://testapiservice3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice3-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice3.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"137.117.11.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/delete-me\",\r\n \"name\": \"delete-me\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArDbQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-02T20:10:40.2502073Z\",\r\n \"gatewayUrl\": \"https://delete-me.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://delete-me-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://delete-me.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://delete-me.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://delete-me.management.azure-api.net\",\r\n \"scmUrl\": \"https://delete-me.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"delete-me.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.74.190\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshimanagedcert\",\r\n \"name\": \"kjoshimanagedcert\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArVSE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-10T00:20:52.5741824Z\",\r\n \"gatewayUrl\": \"https://kjoshimanagedcert.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshimanagedcert.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsumptionmanagedcert.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-06-10T16:59:59-07:00\",\r\n \"thumbprint\": \"7EA080F67F9BC89379315CFC867A20481B737390\",\r\n \"subject\": \"CN=kjoshiconsumptionmanagedcert.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Managed\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-10T00:20:51.8316378Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-10T00:52:30.6581975Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-westus-digitalyuan-pre\",\r\n \"name\": \"jijohn-westus-digitalyuan-pre\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArUrw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-03T04:14:46.0810905Z\",\r\n \"gatewayUrl\": \"https://jijohn-westus-digitalyuan-pre.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-westus-digitalyuan-pre.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-03T04:14:45.938843Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-03T04:14:45.938843Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntestConsumption\",\r\n \"name\": \"tntestConsumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAArUj0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"atuannguyen1997@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-08-22T00:04:17.8294341Z\",\r\n \"gatewayUrl\": \"https://tntestconsumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntestconsumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"004f6096-d97a-4a99-9c09-7499ee36129a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"v-ssaiprasan@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-27T05:30:47.2883441Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest\",\r\n \"name\": \"tntest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"accountName\": \"azureapimanagement\",\r\n \"Owner\": \"tuanguye\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAs82A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-ssaiprasan@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-29T17:08:15.1230697Z\",\r\n \"gatewayUrl\": \"https://tntest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.216.130\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"52.190.63.153\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://tntest-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"40.122.115.152\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://tntest-centralus-01.regional.azure-api.net\",\r\n \"disableGateway\": false,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_3DES_EDE_CBC_SHA\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"Root\",\r\n \"certificate\": {\r\n \"expiry\": \"2021-11-25T14:51:47-08:00\",\r\n \"thumbprint\": \"4E8234312EC69245D1AE296C4882D46FB84076A3\",\r\n \"subject\": \"CN=*.apim.net\"\r\n }\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2017-03-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"83594bc4-2fc1-4a4b-892f-cf2a41db8e1b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-14T20:35:35.4180915Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/FranceCentral-Canary\",\r\n \"name\": \"FranceCentral-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"France Central\",\r\n \"etag\": \"AAAAAAAORtU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:16:01.6505783Z\",\r\n \"gatewayUrl\": \"https://francecentral-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"francecentral-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"freeCertFranCenConsumption.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2022-09-03T16:59:59-07:00\",\r\n \"thumbprint\": \"68711837839AAE7F4FE053D88EE82C8009BCF01D\",\r\n \"subject\": \"CN=freecertfrancenconsumption.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"Managed\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-03T18:27:13.9225026Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest1\",\r\n \"name\": \"tntest1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAczYQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"a@gmail.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-11-21T05:15:14.3715298Z\",\r\n \"gatewayUrl\": \"https://tntest1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest1.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.97.9.28\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"true\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-19T01:32:39.7098303Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v2\",\r\n \"name\": \"jijohn-isolated-prod-v2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHp0E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T20:41:11.6877505Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v2-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.ApiManagement/service/sfapim-jikang-testing\",\r\n \"name\": \"sfapim-jikang-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAb/oM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T01:25:32.9898807Z\",\r\n \"gatewayUrl\": \"https://sfapim-jikang-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sfapim-jikang-testing-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sfapim-jikang-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sfapim-jikang-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sfapim-jikang-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://sfapim-jikang-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sfapim-jikang-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.215.115.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.Network/virtualNetworks/jikang-test-vnet/subnets/apim-subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"subnetAddress\": \"10.0.1.0/24\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"658e1d98-0b1c-48fa-b1ef-21fb1efe1c83\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Special-IP-Assigned-RG-Do-Not-Delete/providers/Microsoft.ApiManagement/service/kjoshisnoutagescus\",\r\n \"name\": \"kjoshisnoutagescus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAeBAw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi south central us\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-09-05T16:57:56.8923548Z\",\r\n \"gatewayUrl\": \"https://kjoshisnoutagescus.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshisnoutagescus-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshisnoutagescus.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshisnoutagescus.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshisnoutagescus.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshisnoutagescus.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshisnoutagescus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.214.49.160\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/accessibility\",\r\n \"name\": \"accessibility\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAcAoA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@corp.microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-03-12T22:41:49.8713478Z\",\r\n \"gatewayUrl\": \"https://accessibility.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://accessibility-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://accessibility.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://accessibility.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://accessibility.management.azure-api.net\",\r\n \"scmUrl\": \"https://accessibility.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"accessibility.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.65.192.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"True\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"6a729ed5-af23-49c1-9ff5-56efddf1dcbc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/SouthCentralUS-Canary\",\r\n \"name\": \"SouthCentralUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAcVLE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-19T02:01:56.1912158Z\",\r\n \"gatewayUrl\": \"https://southcentralus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"southcentralus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-isolated-prod-v1\",\r\n \"name\": \"jijohn-isolated-prod-v1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAHdzY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Failed\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-10-27T00:35:51.4220489Z\",\r\n \"gatewayUrl\": \"https://jijohn-isolated-prod-v1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-isolated-prod-v1-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-isolated-prod-v1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-isolated-prod-v1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-isolated-prod-v1.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-isolated-prod-v1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-isolated-prod-v1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Isolated\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp\",\r\n \"name\": \"devportal-lrp\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"etag\": \"AAAAAAAdpFk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"API management\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-16T17:38:14.081027Z\",\r\n \"gatewayUrl\": \"https://devportal-lrp.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://devportal-lrp-southcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://devportal-lrp.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://devportal-lrp.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://devportal-lrp.management.azure-api.net\",\r\n \"scmUrl\": \"https://devportal-lrp.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"devportal-lrp.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.240.180\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/devportal-lrp/privateEndpointConnections/11819703-1708-42de-aa4d-2824dec2d412\",\r\n \"name\": \"11819703-1708-42de-aa4d-2824dec2d412\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/c1bc5dd7-ea97-469c-89fa-8f26624902fd/resourceGroups/privatehub-prod-sn01-Rg/providers/Microsoft.Network/privateEndpoints/11819703-1708-42de-aa4d-2824dec2d412\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Private link service from AFD\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5ad27f6-e2f1-48e2-a287-d96d6a2bc8d1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Test-remote-debugging/providers/Microsoft.ApiManagement/service/bugbash-Galin\",\r\n \"name\": \"bugbash-Galin\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"rupliu\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAh9/A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rupliu@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-06-17T18:10:51.6628173Z\",\r\n \"gatewayUrl\": \"https://bugbash-galin.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://bugbash-galin-eastus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://bugbash-galin.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://bugbash-galin.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://bugbash-galin.management.azure-api.net\",\r\n \"scmUrl\": \"https://bugbash-galin.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"bugbash-galin.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.252.118.227\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f80f1b1a-ccfa-45a2-b2ca-066069ac9808\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EastUS2-Canary\",\r\n \"name\": \"EastUS2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAhJxY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-05-16T02:13:20.6966778Z\",\r\n \"gatewayUrl\": \"https://eastus2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eastus2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiconsueus2\",\r\n \"name\": \"kjoshiconsueus2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2\",\r\n \"etag\": \"AAAAAAAiLsM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-08T06:22:42.2073762Z\",\r\n \"gatewayUrl\": \"https://kjoshiconsueus2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiconsueus2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-08T06:22:41.2454026Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-08T06:22:41.2454026Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ui-test-resources/providers/Microsoft.ApiManagement/service/uitest\",\r\n \"name\": \"uitest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPNuo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"uitest@apimuitest.onmicrosoft.com\",\r\n \"publisherName\": \"APIM UI Tests\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-16T14:53:14.5470049Z\",\r\n \"gatewayUrl\": \"https://uitest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://uitest-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://uitest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://uitest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://uitest.management.azure-api.net\",\r\n \"scmUrl\": \"https://uitest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"uitest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.186.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshifrontdoor\",\r\n \"name\": \"kjoshifrontdoor\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPuY4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-06T08:43:12.1611412Z\",\r\n \"gatewayUrl\": \"https://kjoshifrontdoor.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshifrontdoor-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshifrontdoor.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshifrontdoor.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshifrontdoor.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshifrontdoor.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshifrontdoor.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.83.138.56\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-06T08:43:11.3112169Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-06T08:43:11.3112169Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/jikang-msi\",\r\n \"name\": \"jikang-msi\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jikang\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABVxvo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-07-14T22:42:31.4857913Z\",\r\n \"gatewayUrl\": \"https://jikang-msi.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jikang-msi-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jikang-msi.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jikang-msi.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jikang-msi.management.azure-api.net\",\r\n \"scmUrl\": \"https://jikang-msi.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jikang-msi.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.87.24.84\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"84e9ecc2-5001-4fe8-93e5-0842d3fa5096\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Mahsa-Container/providers/Microsoft.ApiManagement/service/Mahsa-APIM\",\r\n \"name\": \"Mahsa-APIM\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABTz8w=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mhasanisadi@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-18T18:57:50.0244482Z\",\r\n \"gatewayUrl\": \"https://mahsa-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mahsa-apim-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mahsa-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mahsa-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mahsa-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://mahsa-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mahsa-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.81.12.249\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS-Canary\",\r\n \"name\": \"EUS-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQStA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:52.9254769Z\",\r\n \"gatewayUrl\": \"https://eus-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ysharma_test/providers/Microsoft.ApiManagement/service/ys-test\",\r\n \"name\": \"ys-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQhdE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"yachnasharma@microsoft.com\",\r\n \"publisherName\": \"DevDiv\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-26T23:33:23.1766813Z\",\r\n \"gatewayUrl\": \"https://ys-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ys-test-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ys-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ys-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ys-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://ys-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ys-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.81.28.173\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2c79f011-68ec-41c8-ae8e-8569c3a44074\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"yachnasharma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-26T23:33:23.1224287Z\",\r\n \"lastModifiedBy\": \"yachnasharma@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-11T20:50:47.4648912Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieusvnet\",\r\n \"name\": \"kjoshieusvnet\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPuFk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-06T04:46:48.3632619Z\",\r\n \"gatewayUrl\": \"https://kjoshieusvnet.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieusvnet-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieusvnet.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshieusvnet.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieusvnet.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieusvnet.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieusvnet.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.124.111.5\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.16.5.197\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.Network/virtualNetworks/kjoshieusbackendvnet/subnets/apimsubnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c29592d3-c7c0-4b14-a6c8-2676d46b6df3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-06T04:46:45.5930299Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-06T04:46:45.5930299Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/andyhaverly/providers/Microsoft.ApiManagement/service/andyhaverly\",\r\n \"name\": \"andyhaverly\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABVkyo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"andyhaverly@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-10T20:38:34.2427032Z\",\r\n \"gatewayUrl\": \"https://andyhaverly.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://andyhaverly-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://andyhaverly.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://andyhaverly.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://andyhaverly.management.azure-api.net\",\r\n \"scmUrl\": \"https://andyhaverly.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"andyhaverly.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.234.163.171\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"andyhaverly@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-10T20:38:33.9312396Z\",\r\n \"lastModifiedBy\": \"andyhaverly@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T20:38:33.9312396Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieus\",\r\n \"name\": \"kjoshieus\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQRyI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"apim\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-28T17:13:59.7510684Z\",\r\n \"gatewayUrl\": \"https://kjoshieus.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieus.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-28T17:13:58.7613819Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-28T17:13:58.7613819Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test-consumption\",\r\n \"name\": \"alanfeng-test-consumption\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQXPk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-08T01:07:26.9020978Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test-consumption.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test-consumption.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/testapiservice5\",\r\n \"name\": \"testapiservice5\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABUVYw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"testapiservice5@testapiservice5.com\",\r\n \"publisherName\": \"testapiservice5\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-01-14T03:18:01.7544432Z\",\r\n \"gatewayUrl\": \"https://testapiservice5.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiservice5-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiservice5.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiservice5.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiservice5.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiservice5.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiservice5.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.72.73.206\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/andyhaverly/providers/Microsoft.ApiManagement/service/apim-msi\",\r\n \"name\": \"apim-msi\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABPoqo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"andyhaverly@microsoft.com\",\r\n \"publisherName\": \"sand\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-01T22:52:11.2941474Z\",\r\n \"gatewayUrl\": \"https://apim-msi.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-msi-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-msi.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-msi.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-msi.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-msi.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-msi.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.224.73.236\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"90aa239c-1e48-404e-924a-48c1c4e02f92\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"andyhaverly@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-01T22:52:11.0221317Z\",\r\n \"lastModifiedBy\": \"andyhaverly@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-24T20:09:27.2037354Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/alanfeng-developer/providers/Microsoft.ApiManagement/service/alanfeng-test-consumption2\",\r\n \"name\": \"alanfeng-test-consumption2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQYS0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alanfeng@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-12T04:15:57.1601989Z\",\r\n \"gatewayUrl\": \"https://alanfeng-test-consumption2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alanfeng-test-consumption2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"alanfeng@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-12T04:15:57.0433937Z\",\r\n \"lastModifiedBy\": \"alanfeng@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-12T04:15:57.0433937Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/APIM_OGF/providers/Microsoft.ApiManagement/service/ogftest123\",\r\n \"name\": \"ogftest123\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABQAG4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-ssaiprasan@microsoft.com\",\r\n \"publisherName\": \"test78\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-06-01T10:14:13.7358898Z\",\r\n \"gatewayUrl\": \"https://ogftest123.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ogftest123-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ogftest123.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ogftest123.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ogftest123.management.azure-api.net\",\r\n \"scmUrl\": \"https://ogftest123.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ogftest123.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.164.27\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"4a2500a6-1273-42bf-a6ad-05272ee561ef\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/scfitzgeAPIM/providers/Microsoft.ApiManagement/service/apitester3000\",\r\n \"name\": \"apitester3000\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABVIII=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"scfitzge@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-04-05T20:30:06.410739Z\",\r\n \"gatewayUrl\": \"https://apitester3000.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apitester3000-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apitester3000.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apitester3000.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apitester3000.management.azure-api.net\",\r\n \"scmUrl\": \"https://apitester3000.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apitester3000.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.85.173.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/wpooleyrg/providers/Microsoft.ApiManagement/service/wpooleyapim\",\r\n \"name\": \"wpooleyapim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABP1Ww=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"wpooley@microsoft.com\",\r\n \"publisherName\": \"William Pooley\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-13T17:52:07.593036Z\",\r\n \"gatewayUrl\": \"https://wpooleyapim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://wpooleyapim-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://wpooleyapim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://wpooleyapim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://wpooleyapim.management.azure-api.net\",\r\n \"scmUrl\": \"https://wpooleyapim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"wpooleyapim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.119.124.128\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"wpooley@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-13T17:52:07.5323658Z\",\r\n \"lastModifiedBy\": \"wpooley@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-13T17:52:07.5323658Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/NEU-Canary\",\r\n \"name\": \"NEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAy2eg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:59:15.312131Z\",\r\n \"gatewayUrl\": \"https://neu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"neu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-bug-bash-pp2\",\r\n \"name\": \"jitin-bug-bash-pp2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"sku\": \"consumption\",\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAy2HI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2018-11-28T20:02:47.2274561Z\",\r\n \"gatewayUrl\": \"https://jitin-bug-bash-pp2.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-bug-bash-pp2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jsorohova_test/providers/Microsoft.ApiManagement/service/jsorohova-apitest\",\r\n \"name\": \"jsorohova-apitest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAyxDM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jsorohova@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-12T15:22:26.1985093Z\",\r\n \"gatewayUrl\": \"https://jsorohova-apitest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jsorohova-apitest-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jsorohova-apitest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jsorohova-apitest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jsorohova-apitest.management.azure-api.net\",\r\n \"scmUrl\": \"https://jsorohova-apitest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jsorohova-apitest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.82.251.95\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jsorohova@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-12T15:22:26.1451755Z\",\r\n \"lastModifiedBy\": \"jsorohova@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-15T15:47:39.3241653Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mizolota-testing/providers/Microsoft.ApiManagement/service/mizolota-testing\",\r\n \"name\": \"mizolota-testing\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAAyJG4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mizolota@microsoft.com\",\r\n \"publisherName\": \"mizolota\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-26T08:52:09.6939146Z\",\r\n \"gatewayUrl\": \"https://mizolota-testing.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://mizolota-testing-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://mizolota-testing.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://mizolota-testing.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://mizolota-testing.management.azure-api.net\",\r\n \"scmUrl\": \"https://mizolota-testing.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"mizolota-testing.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.105.83.137\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mizolota@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-26T08:52:09.6938125Z\",\r\n \"lastModifiedBy\": \"mizolota@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-26T08:52:09.6938125Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-fwd-north-europe\",\r\n \"name\": \"jitin-fwd-north-europe\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"etag\": \"AAAAAAA0lNg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T00:58:18.8388979Z\",\r\n \"gatewayUrl\": \"https://jitin-fwd-north-europe.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-fwd-north-europe-northeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-fwd-north-europe.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-fwd-north-europe.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-fwd-north-europe.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-fwd-north-europe.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-fwd-north-europe.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.164.120.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/harun-dev/providers/Microsoft.ApiManagement/service/harun-apim-dev\",\r\n \"name\": \"harun-apim-dev\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACOHIA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"harunheybet@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-03T08:42:03.4416807Z\",\r\n \"gatewayUrl\": \"https://harun-apim-dev.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://harun-apim-dev-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://harun-apim-dev.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://harun-apim-dev.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://harun-apim-dev.management.azure-api.net\",\r\n \"scmUrl\": \"https://harun-apim-dev.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"harun-apim-dev.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.74.14.72\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"harunheybet@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-03T08:42:03.3490662Z\",\r\n \"lastModifiedBy\": \"harunheybet@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-03T08:42:03.3490662Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/WEU-Canary\",\r\n \"name\": \"WEU-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACPkKs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mijiang@microsoft.com\",\r\n \"publisherName\": \"Contoso\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-02-08T18:58:46.9010517Z\",\r\n \"gatewayUrl\": \"https://weu-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"weu-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/dmkorolev-test/providers/Microsoft.ApiManagement/service/dmkorolev-APIM-test\",\r\n \"name\": \"dmkorolev-APIM-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACU9Nk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"dmkorolev@microsoft.com\",\r\n \"publisherName\": \"dmkorolev-test-company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-02T11:19:43.421632Z\",\r\n \"gatewayUrl\": \"https://dmkorolev-apim-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://dmkorolev-apim-test-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://dmkorolev-apim-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://dmkorolev-apim-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://dmkorolev-apim-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://dmkorolev-apim-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"dmkorolev-apim-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.23.72.135\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"dmkorolev@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-02T11:19:43.4066847Z\",\r\n \"lastModifiedBy\": \"dmkorolev@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-02T11:19:43.4066847Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/corrtest\",\r\n \"name\": \"corrtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACRnb8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"dfsdfsd\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-03T05:32:44.2623295Z\",\r\n \"gatewayUrl\": \"https://corrtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://corrtest-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://corrtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://corrtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://corrtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://corrtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"corrtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.63.98.0\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/apim-jikang-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jikang-msi-testsf\": {\r\n \"principalId\": \"95228a1e-354e-445c-8582-e73e40af525a\",\r\n \"clientId\": \"0aabed8b-29f4-4741-9880-3a0fdb68aea6\"\r\n }\r\n }\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/rmielowski/providers/Microsoft.ApiManagement/service/rmielowski-test\",\r\n \"name\": \"rmielowski-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACOHHQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"rmielowski@microsoft.com\",\r\n \"publisherName\": \"apim-dev\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-03T10:45:03.8932789Z\",\r\n \"gatewayUrl\": \"https://rmielowski-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rmielowski-test-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rmielowski-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rmielowski-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rmielowski-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://rmielowski-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rmielowski-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.136.83.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"rmielowski@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-03T10:45:03.8756501Z\",\r\n \"lastModifiedBy\": \"rmielowski@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-03T10:45:03.8756501Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.ApiManagement/service/vpnpremium\",\r\n \"name\": \"vpnpremium\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACMou4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2016-04-12T00:20:15.6018952Z\",\r\n \"gatewayUrl\": \"https://vpnpremium.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vpnpremium.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vpnpremium.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vpnpremium.management.azure-api.net\",\r\n \"scmUrl\": \"https://vpnpremium.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vpnpremium.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"proxy.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://samir-msi-keyvault.vault.azure.net/secrets/msicertificate\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2020-12-18T03:11:47-08:00\",\r\n \"thumbprint\": \"9833D531D7A45C565766F2A85908BD3692E0BD3F\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"KeyVault\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.94.204.188\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"20.123.33.179\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-Europe/providers/Microsoft.Network/virtualNetworks/vpn-premium-ne/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://vpnpremium-northeurope-01.regional.azure-api.net\",\r\n \"disableGateway\": false,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": null,\r\n \"vnetid\": \"66f34ee9-17bd-48d3-82d3-fbdfe9661aa9\",\r\n \"subnetname\": \"Subnet-1\"\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ca1d33f7-3cf9-42ec-b3e9-d526a1ee953a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": null,\r\n \"createdByType\": null,\r\n \"createdAt\": null,\r\n \"lastModifiedBy\": \"sasolank@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-02T20:04:00.606115Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jmach/providers/Microsoft.ApiManagement/service/apim-resource-jmach\",\r\n \"name\": \"apim-resource-jmach\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACODyo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"janmach1@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-18T13:26:09.53742Z\",\r\n \"gatewayUrl\": \"https://apim-resource-jmach.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-resource-jmach-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-resource-jmach.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-resource-jmach.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-resource-jmach.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-resource-jmach.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-resource-jmach.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.54.235.228\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"janmach1@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-18T13:26:09.4895177Z\",\r\n \"lastModifiedBy\": \"janmach1@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-18T13:26:09.4895177Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/carlos-test/providers/Microsoft.ApiManagement/service/carlos-test\",\r\n \"name\": \"carlos-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACN9aI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"carlosperez@microsoft.com\",\r\n \"publisherName\": \"carlos-test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-09-06T18:45:36.7986418Z\",\r\n \"gatewayUrl\": \"https://carlos-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://carlos-test-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://carlos-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://carlos-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://carlos-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://carlos-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"carlos-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.93.201.228\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"carlosperez@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-09-06T18:45:36.7590825Z\",\r\n \"lastModifiedBy\": \"carlosperez@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-06T18:45:36.7590825Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/test-fwd-westeurope\",\r\n \"name\": \"test-fwd-westeurope\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACWSNE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-18T01:01:10.5192286Z\",\r\n \"gatewayUrl\": \"https://test-fwd-westeurope.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://test-fwd-westeurope-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://test-fwd-westeurope.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://test-fwd-westeurope.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://test-fwd-westeurope.management.azure-api.net\",\r\n \"scmUrl\": \"https://test-fwd-westeurope.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"test-fwd-westeurope.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.45.30.219\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889\",\r\n \"name\": \"ps4889\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACWXnQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T10:42:11.0081683Z\",\r\n \"gatewayUrl\": \"https://ps4889.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4889.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T10:42:10.9125281Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T10:42:10.9125281Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/haidar/providers/Microsoft.ApiManagement/service/websockettest\",\r\n \"name\": \"websockettest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACUoe0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"mohaidar@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-14T11:24:17.544106Z\",\r\n \"gatewayUrl\": \"https://websockettest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://websockettest-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://websockettest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://websockettest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://websockettest.management.azure-api.net\",\r\n \"scmUrl\": \"https://websockettest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"websockettest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.23.50.218\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"mohaidar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-03-14T11:24:17.5202006Z\",\r\n \"lastModifiedBy\": \"mohaidar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-14T11:24:17.5202006Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-sandbox-tomkerkhove-we/providers/Microsoft.ApiManagement/service/apim-sandbox-tomkerkhove-global-api-gateway\",\r\n \"name\": \"apim-sandbox-tomkerkhove-global-api-gateway\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Location\": \"Cloud\",\r\n \"Area\": \"APIs & API Gateway\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACT8hk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tomkerkhove@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-03T12:58:44.594806Z\",\r\n \"gatewayUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway-we-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-sandbox-tomkerkhove-global-api-gateway.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-sandbox-tomkerkhove-global-api-gateway.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.105.202.177\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"1dcc505f-3394-4307-94a8-dade9f2b6e82\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tomkerkhove@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-03T12:58:43.7546124Z\",\r\n \"lastModifiedBy\": \"tomkerkhove@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-03-10T07:09:36.7340786Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiweu\",\r\n \"name\": \"kjoshiweu\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACRbUw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-18T03:44:38.4481085Z\",\r\n \"gatewayUrl\": \"https://kjoshiweu.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiweu-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiweu.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiweu.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiweu.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiweu.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiweu.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.93.232.182\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiweu/privateEndpointConnections/kjoshiinboundPE\",\r\n \"name\": \"kjoshiinboundPE\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.Network/privateEndpoints/kjoshiinboundPE\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"89c2b6c9-2e77-4b74-8ef6-09e2e093309f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-18T03:44:34.8541834Z\",\r\n \"lastModifiedBy\": \"sasolank@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-18T18:16:41.734013Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshiweuportal\",\r\n \"name\": \"kjoshiweuportal\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACQLek=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-02-18T03:54:08.2413401Z\",\r\n \"gatewayUrl\": \"https://kjoshiweuportal.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshiweuportal-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshiweuportal.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshiweuportal.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshiweuportal.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshiweuportal.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshiweuportal.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.103.144.21\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"af1f0d85-5995-4912-863d-4842ebbaa4f2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"kjoshi@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-02-18T03:54:05.8178939Z\",\r\n \"lastModifiedBy\": \"kjoshi@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-18T03:54:05.8178939Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-oss/providers/Microsoft.ApiManagement/service/apim-oss\",\r\n \"name\": \"apim-oss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACU+qc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tomkerkhove@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-16T14:46:05.0678198Z\",\r\n \"gatewayUrl\": \"https://apim-oss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-oss-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-oss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-oss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-oss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-oss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-oss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.145.184.132\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tomkerkhove@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-16T14:46:05.0506905Z\",\r\n \"lastModifiedBy\": \"tomkerkhove@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-16T14:46:05.0506905Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/devenv/providers/Microsoft.ApiManagement/service/harun-apim\",\r\n \"name\": \"harun-apim\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACU8v8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"harunheybet@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-06T14:43:48.8100482Z\",\r\n \"gatewayUrl\": \"https://harun-apim.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://harun-apim-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://harun-apim.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://harun-apim.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://harun-apim.management.azure-api.net\",\r\n \"scmUrl\": \"https://harun-apim.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"harun-apim.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.103.72.92\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"harunheybet@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-06T14:43:48.2438636Z\",\r\n \"lastModifiedBy\": \"harunheybet@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-06T14:43:48.2438636Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/cmalin/providers/Microsoft.ApiManagement/service/cmalin\",\r\n \"name\": \"cmalin\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACOFaY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"malincrist@microsoft.com\",\r\n \"publisherName\": \"microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-20T13:29:52.3859816Z\",\r\n \"gatewayUrl\": \"https://cmalin.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://cmalin-westeurope-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://cmalin.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://cmalin.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://cmalin.management.azure-api.net\",\r\n \"scmUrl\": \"https://cmalin.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cmalin.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.73.36.217\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"malincrist@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-10-20T13:29:52.369527Z\",\r\n \"lastModifiedBy\": \"malincrist@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-10-20T13:29:52.369527Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-usw3-az\",\r\n \"name\": \"jijohn-usw3-az\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 3\",\r\n \"etag\": \"AAAAAAACeVo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-10T17:20:52.7775395Z\",\r\n \"gatewayUrl\": \"https://jijohn-usw3-az.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-usw3-az-westus3-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-usw3-az.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-usw3-az.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-usw3-az.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-usw3-az.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-usw3-az.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.150.251.100\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 4\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ],\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-jio-india-central\",\r\n \"name\": \"jitin-jio-india-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India Central\",\r\n \"etag\": \"AAAAAAAB8D0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"jitin\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-25T16:21:32.8139789Z\",\r\n \"gatewayUrl\": \"https://jitin-jio-india-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-jio-india-central-jioindiacentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-jio-india-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-jio-india-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-jio-india-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-jio-india-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-jio-india-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.193.208.242\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-jio-india-west\",\r\n \"name\": \"jijohn-jio-india-west\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"AAAAAAABwmo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-05-24T20:46:56.3060919Z\",\r\n \"gatewayUrl\": \"https://jijohn-jio-india-west.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-jio-india-west-jioindiawest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-jio-india-west.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-jio-india-west.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-jio-india-west.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-jio-india-west.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-jio-india-west.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.64.18.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-test\",\r\n \"name\": \"jijohn-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"AAAAAAAA2lg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijoh@gmail.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-22T23:06:42.0693752Z\",\r\n \"gatewayUrl\": \"https://jijohn-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jijohn-test-swedencentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jijohn-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jijohn-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jijohn-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://jijohn-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.12.128.16\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-22T23:06:41.5245485Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-22T23:06:41.5245485Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-australiacentral2-vmss-test3\",\r\n \"name\": \"apim-australiacentral2-vmss-test3\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAHabo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-02-26T22:18:09.8509396Z\",\r\n \"gatewayUrl\": \"https://apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-australiacentral2-vmss-test3-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-australiacentral2-vmss-test3.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-australiacentral2-vmss-test3.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-australiacentral2-vmss-test3.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-australiacentral2-vmss-test3.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-australiacentral2-vmss-test3.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.66.131\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-cbr2\",\r\n \"name\": \"jitin-cbr2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAHZtM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-17T22:22:26.3793973Z\",\r\n \"gatewayUrl\": \"https://jitin-cbr2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-cbr2-australiacentral2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-cbr2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-cbr2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-cbr2.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-cbr2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-cbr2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.36.71.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/AustraliaCentral2-Canary\",\r\n \"name\": \"AustraliaCentral2-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"etag\": \"AAAAAAAHiVo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-11-05T22:01:59.2396648Z\",\r\n \"gatewayUrl\": \"https://australiacentral2-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"australiacentral2-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/kjoshitest/providers/Microsoft.ApiManagement/service/kjoshieuapzrs\",\r\n \"name\": \"kjoshieuapzrs\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZrk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"kjoshi\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-01-27T03:09:46.1687334Z\",\r\n \"gatewayUrl\": \"https://kjoshieuapzrs.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://kjoshieuapzrs-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://kjoshieuapzrs.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://kjoshieuapzrs.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://kjoshieuapzrs.management.azure-api.net\",\r\n \"scmUrl\": \"https://kjoshieuapzrs.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"kjoshieuapzrs.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.79.113.1\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/acttest\",\r\n \"name\": \"acttest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"testtag\": \"zzz\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZtM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"hyh76yh7hyh\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-20T18:05:23.0669881Z\",\r\n \"gatewayUrl\": \"https://acttest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://acttest-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://acttest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://acttest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://acttest.management.azure-api.net\",\r\n \"scmUrl\": \"https://acttest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"acttest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.47.145.255\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-20T18:05:22.5537339Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-08-20T18:05:22.5537339Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-az-drill-test/providers/Microsoft.ApiManagement/service/apim-drill-service-1\",\r\n \"name\": \"apim-drill-service-1\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"drill\",\r\n \"tag2\": \"apim\",\r\n \"tag3\": \"canary\",\r\n \"tag_test\": \"Drill1\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZ20=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-10-15T06:24:29.2669104Z\",\r\n \"gatewayUrl\": \"https://apim-drill-service-1.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-drill-service-1-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-drill-service-1.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-drill-service-1.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-drill-service-1.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-drill-service-1.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-drill-service-1.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.253.229.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 3\r\n },\r\n \"identity\": null,\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-10-15T06:24:28.4020326Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-10-15T06:24:28.4020326Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-euap-test2\",\r\n \"name\": \"seaki-euap-test2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAARZwE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T21:39:09.8380753Z\",\r\n \"gatewayUrl\": \"https://seaki-euap-test2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-euap-test2-eastus2euap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-euap-test2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-euap-test2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-euap-test2.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-euap-test2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-euap-test2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.39.29.210\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T21:39:09.2039331Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-18T21:39:09.2039331Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/EUS2EUAP-Canary\",\r\n \"name\": \"EUS2EUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"etag\": \"AAAAAAAQCLY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:45:13.9169127Z\",\r\n \"gatewayUrl\": \"https://eus2euap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"eus2euap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jijohn-regression-test\",\r\n \"name\": \"jijohn-regression-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAXsDM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijo@emc.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-12-30T01:55:43.298889Z\",\r\n \"gatewayUrl\": \"https://jijohn-regression-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jijohn-regression-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jijohn@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-12-30T01:55:43.2121449Z\",\r\n \"lastModifiedBy\": \"jijohn@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-12-30T01:55:43.2121449Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice\",\r\n \"name\": \"powershellsdkservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZaiM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foo@live.com\",\r\n \"publisherName\": \"apimgmt\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-26T22:17:08.4631999Z\",\r\n \"gatewayUrl\": \"https://powershellsdkservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://powershellsdkservice-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://powershellsdkservice.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://powershellsdkservice.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://powershellsdkservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://powershellsdkservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"powershellsdkservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.233.193\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"93650c54-165e-4bf5-9cd0-1ffef301d6ab\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-07-26T22:17:08.2005563Z\",\r\n \"lastModifiedBy\": \"jikang@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-07-26T23:56:57.8452684Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest\",\r\n \"name\": \"glebegtest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZag8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"foobar@microsoft.com\",\r\n \"publisherName\": \"xcvxcvxc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-08T22:12:14.2339542Z\",\r\n \"gatewayUrl\": \"https://glebegtest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://glebegtest-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://glebegtest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://glebegtest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://glebegtest.management.azure-api.net\",\r\n \"scmUrl\": \"https://glebegtest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"glebegtest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.229.177\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest/privateEndpointConnections/samirPe14connection\",\r\n \"name\": \"samirPe14connection\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/gleb-manual-10272021\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest/privateEndpointConnections/manualapprovePe1connection\",\r\n \"name\": \"manualapprovePe1connection\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/samir-pedemo2-manualapprove\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/providers/Microsoft.ApiManagement/service/glebegtest/privateEndpointConnections/manualRejectPe3connection\",\r\n \"name\": \"manualRejectPe3connection\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/samir-pedemo2-manualreject2\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Rejected\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"5e9956fa-2ed0-4a83-82d8-d277a37b867b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"foobar@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-08T22:12:14.0629352Z\",\r\n \"lastModifiedBy\": \"foobar@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-09-08T16:09:56.6757111Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ConsumptionCanary/providers/Microsoft.ApiManagement/service/CUSEUAP-Canary\",\r\n \"name\": \"CUSEUAP-Canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"kjoshi\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAXsFM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"APIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-10-29T17:40:38.7929014Z\",\r\n \"gatewayUrl\": \"https://cuseuap-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"cuseuap-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6203f1ba-72eb-4a6d-a878-c914fa25b5a4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap\",\r\n \"name\": \"tntest-centraluseuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZagc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"abc@gmail.com\",\r\n \"publisherName\": \"abc\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-21T06:11:29.4006558Z\",\r\n \"gatewayUrl\": \"https://tntest-centraluseuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tntest-centraluseuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tntest-centraluseuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tntest-centraluseuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tntest-centraluseuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://tntest-centraluseuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tntest-centraluseuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.232.35\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/pl2\",\r\n \"name\": \"pl2\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/privateEndpoints/pl2\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/pl3\",\r\n \"name\": \"pl3\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/privateEndpoints/pl3\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"None5\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/pl4\",\r\n \"name\": \"pl4\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.Network/privateEndpoints/pl4\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tntest/providers/Microsoft.ApiManagement/service/tntest-centraluseuap/privateEndpointConnections/ton-please-approve\",\r\n \"name\": \"ton-please-approve\",\r\n \"type\": \"Microsoft.ApiManagement/service/privateEndpointConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/lrptest/providers/Microsoft.Network/privateEndpoints/tony-test-manualapproval5\"\r\n },\r\n \"groupIds\": [\r\n \"Gateway\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Please approve my connection.\",\r\n \"actionsRequired\": null\r\n }\r\n }\r\n }\r\n ],\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"tuanguye@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-21T06:11:29.0901472Z\",\r\n \"lastModifiedBy\": \"tuanguye@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-21T06:11:29.0901472Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/seaki-api-test/providers/Microsoft.ApiManagement/service/seaki-euapcentral-test\",\r\n \"name\": \"seaki-euapcentral-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZakU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"seaki@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-11-18T23:12:25.3013938Z\",\r\n \"gatewayUrl\": \"https://seaki-euapcentral-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://seaki-euapcentral-test-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://seaki-euapcentral-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://seaki-euapcentral-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://seaki-euapcentral-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://seaki-euapcentral-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"seaki-euapcentral-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.236.24\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"seaki@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-11-18T23:12:25.1482083Z\",\r\n \"lastModifiedBy\": \"seaki@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2021-11-18T23:12:25.1482083Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/apim-jikang-rg/providers/Microsoft.ApiManagement/service/jikang-canary\",\r\n \"name\": \"jikang-canary\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZaek=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jikang@Microsoft.com\",\r\n \"publisherName\": \"Microsoft Internal\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-22T21:32:58.2890568Z\",\r\n \"gatewayUrl\": \"https://jikang-canary.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jikang-canary-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jikang-canary.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jikang-canary.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jikang-canary.management.azure-api.net\",\r\n \"scmUrl\": \"https://jikang-canary.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jikang-canary.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.182.246\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.31.0.7\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/internal-vnet/providers/Microsoft.Network/virtualNetworks/apimvnet/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"397390e6-2107-4d52-97ae-fb8c3a007202\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-07-22T21:32:55.1666835Z\",\r\n \"lastModifiedBy\": \"jikang@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-04T23:08:57.230546Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/alzasloneuap06\",\r\n \"name\": \"alzasloneuap06\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZahM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"alzaslon@microsoft.com\",\r\n \"publisherName\": \"MS\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-01-06T02:52:09.4015422Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap06.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap06-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap06.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap06.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap06.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap06.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap06.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.46.29.80\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"alzaslon@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2022-01-06T02:52:09.2518158Z\",\r\n \"lastModifiedBy\": \"alzaslon@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-01-06T02:52:09.2518158Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US-EUAP/providers/Microsoft.ApiManagement/service/freeCert-canary-test\",\r\n \"name\": \"freeCert-canary-test\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAZaf0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"zhonren@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-08-24T22:40:21.7588233Z\",\r\n \"gatewayUrl\": \"https://freecert-canary-test.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://freecert-canary-test-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://freecert-canary-test.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://freecert-canary-test.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://freecert-canary-test.management.azure-api.net\",\r\n \"scmUrl\": \"https://freecert-canary-test.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"freecert-canary-test.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.236.81\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"2d820efd-d633-4f05-8b53-73f0be9a7367\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"zhonren@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2021-08-24T22:40:21.5111609Z\",\r\n \"lastModifiedBy\": \"zhonren@microsoft.com\",\r\n \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-02-14T23:24:48.6718143Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/jitin-resourcegroup/providers/Microsoft.ApiManagement/service/jitin-uae-central\",\r\n \"name\": \"jitin-uae-central\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"jijohn\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAEVdw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"jijohn@microsoft.com\",\r\n \"publisherName\": \"msft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-12-12T18:44:51.9105707Z\",\r\n \"gatewayUrl\": \"https://jitin-uae-central.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://jitin-uae-central-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://jitin-uae-central.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://jitin-uae-central.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://jitin-uae-central.management.azure-api.net\",\r\n \"scmUrl\": \"https://jitin-uae-central.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"jitin-uae-central.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.64.181\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-uaecentral-vmss\",\r\n \"name\": \"apim-uaecentral-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"UAE Central\",\r\n \"etag\": \"AAAAAAAEUtQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:40:25.8886265Z\",\r\n \"gatewayUrl\": \"https://apim-uaecentral-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-uaecentral-vmss-uaecentral-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-uaecentral-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-uaecentral-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-uaecentral-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-uaecentral-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-uaecentral-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.45.70.76\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-germanynorth-vmss\",\r\n \"name\": \"apim-germanynorth-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Germany North\",\r\n \"etag\": \"AAAAAAAD7OM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T01:37:08.6104095Z\",\r\n \"gatewayUrl\": \"https://apim-germanynorth-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-germanynorth-vmss-germanynorth-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-germanynorth-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-germanynorth-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-germanynorth-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-germanynorth-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-germanynorth-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.116.208.134\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-norwaywest-vmss2\",\r\n \"name\": \"apim-norwaywest-vmss2\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Norway West\",\r\n \"etag\": \"AAAAAAADwPw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-24T23:20:49.4916182Z\",\r\n \"gatewayUrl\": \"https://apim-norwaywest-vmss2.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-norwaywest-vmss2-norwaywest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-norwaywest-vmss2.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-norwaywest-vmss2.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-norwaywest-vmss2.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-norwaywest-vmss2.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-norwaywest-vmss2.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.120.165.125\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-switzerlandwest-vmss\",\r\n \"name\": \"apim-switzerlandwest-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Switzerland West\",\r\n \"etag\": \"AAAAAAAGIh4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-26T18:25:15.6687061Z\",\r\n \"gatewayUrl\": \"https://apim-switzerlandwest-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-switzerlandwest-vmss-switzerlandwest-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-switzerlandwest-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-switzerlandwest-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-switzerlandwest-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-switzerlandwest-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-switzerlandwest-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"51.107.168.168\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/samir-vmss-testing/providers/Microsoft.ApiManagement/service/apim-brazilsoutheast-vmss\",\r\n \"name\": \"apim-brazilsoutheast-vmss\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"AAAAAAAClFA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Microsoft\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-03-23T23:24:40.0638446Z\",\r\n \"gatewayUrl\": \"https://apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-brazilsoutheast-vmss-brazilsoutheast-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-brazilsoutheast-vmss.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-brazilsoutheast-vmss.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-brazilsoutheast-vmss.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-brazilsoutheast-vmss.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-brazilsoutheast-vmss.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.40.33.4\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": null\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ4ODk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"location\": \"West Europe\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05d50a40-1a78-4d3a-a239-bd1690e523e2"
+ "fc9df3ef-77d3-466e-9805-9d74460ef40c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8834,10 +8269,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAABjBsc=\""
+ "\"AAAAAACWXmU=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784/operationresults/d2VzdGV1cm9wZTpwczc4NF9BY3RfNDQzYTEzYzM=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889/operationresults/d2VzdGV1cm9wZTpwczQ4ODlfQWN0Xzg1YjdlYmY0?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8846,8 +8281,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84f2ef6a-fa99-404b-89c0-6897820c6801",
- "b8d0925e-0912-4702-852c-d9fc2b4449d2"
+ "dc6d3f39-c0a0-4299-873e-f0e1ed9358aa",
+ "dc6d3f39-c0a0-4299-873e-f0e1ed9358aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8856,19 +8291,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "86156ec7-2d2a-4e04-8463-ba34b8dcc193"
+ "dc6d3f39-c0a0-4299-873e-f0e1ed9358aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100136Z:86156ec7-2d2a-4e04-8463-ba34b8dcc193"
+ "WESTCENTRALUS:20220322T104214Z:dc6d3f39-c0a0-4299-873e-f0e1ed9358aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:01:36 GMT"
+ "Tue, 22 Mar 2022 10:42:13 GMT"
],
"Content-Length": [
- "1254"
+ "1707"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8877,23 +8312,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784\",\r\n \"name\": \"ps784\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABjBsc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2021-07-15T10:01:34.4579155Z\",\r\n \"gatewayUrl\": \"https://ps784.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps784.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889\",\r\n \"name\": \"ps4889\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACWXmU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2022-03-22T10:42:11.0081683Z\",\r\n \"gatewayUrl\": \"https://ps4889.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4889.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T10:42:10.9125281Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T10:42:10.9125281Z\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784/operationresults/d2VzdGV1cm9wZTpwczc4NF9BY3RfNDQzYTEzYzM=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4NC9vcGVyYXRpb25yZXN1bHRzL2QyVnpkR1YxY205d1pUcHdjemM0TkY5QlkzUmZORFF6WVRFell6TT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889/operationresults/d2VzdGV1cm9wZTpwczQ4ODlfQWN0Xzg1YjdlYmY0?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ4ODkvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEdWMWNtOXdaVHB3Y3pRNE9EbGZRV04wWHpnMVlqZGxZbVkwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05d50a40-1a78-4d3a-a239-bd1690e523e2"
+ "fc9df3ef-77d3-466e-9805-9d74460ef40c"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8903,11 +8338,17 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889/operationresults/d2VzdGV1cm9wZTpwczQ4ODlfQWN0Xzg1YjdlYmY0?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dba801a4-611f-4628-9569-c5e86aae2430"
+ "3ee2585a-f35b-4443-8a07-cd5350dfca72"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8916,19 +8357,76 @@
"11935"
],
"x-ms-correlation-request-id": [
- "d54a78cf-448e-4d6d-9f50-c62a2ea3da4c"
+ "3ee2585a-f35b-4443-8a07-cd5350dfca72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220322T104314Z:3ee2585a-f35b-4443-8a07-cd5350dfca72"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 10:43:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889/operationresults/d2VzdGV1cm9wZTpwczQ4ODlfQWN0Xzg1YjdlYmY0?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ4ODkvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEdWMWNtOXdaVHB3Y3pRNE9EbGZRV04wWHpnMVlqZGxZbVkwP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fc9df3ef-77d3-466e-9805-9d74460ef40c"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "96b7b454-0234-49d3-9cc8-eab7a92a2c29"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-correlation-request-id": [
+ "96b7b454-0234-49d3-9cc8-eab7a92a2c29"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100237Z:d54a78cf-448e-4d6d-9f50-c62a2ea3da4c"
+ "WESTCENTRALUS:20220322T104415Z:96b7b454-0234-49d3-9cc8-eab7a92a2c29"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:02:36 GMT"
+ "Tue, 22 Mar 2022 10:44:14 GMT"
],
"Content-Length": [
- "1745"
+ "2198"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8937,26 +8435,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784\",\r\n \"name\": \"ps784\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABjBto=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T10:01:34.4579155Z\",\r\n \"gatewayUrl\": \"https://ps784.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps784.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889\",\r\n \"name\": \"ps4889\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACWXnQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T10:42:11.0081683Z\",\r\n \"gatewayUrl\": \"https://ps4889.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4889.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T10:42:10.9125281Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T10:42:10.9125281Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -8967,7 +8465,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19UZXJtX2Q1OThiYWRh?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -8976,7 +8474,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c4147651-ab22-40a1-9048-81d5e47f0a39"
+ "a44dd45c-4310-42f0-b925-f0b4e417611e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -8985,19 +8483,19 @@
"14999"
],
"x-ms-correlation-request-id": [
- "41a57e5f-2db3-4685-81f6-11a38fbb1fc7"
+ "a44dd45c-4310-42f0-b925-f0b4e417611e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100239Z:41a57e5f-2db3-4685-81f6-11a38fbb1fc7"
+ "WESTCENTRALUS:20220322T104418Z:a44dd45c-4310-42f0-b925-f0b4e417611e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:02:39 GMT"
+ "Tue, 22 Mar 2022 10:44:17 GMT"
],
"Content-Length": [
- "2111"
+ "2548"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9006,23 +8504,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154\",\r\n \"name\": \"ps4154\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+oM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2021-07-15T09:00:10.585047Z\",\r\n \"gatewayUrl\": \"https://ps4154.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4154-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4154.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4154.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4154.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4154.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4154.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.84.168.115\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883\",\r\n \"name\": \"ps2883\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof9U=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2022-03-22T08:43:34.064822Z\",\r\n \"gatewayUrl\": \"https://ps2883.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2883-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2883.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2883.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2883.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2883.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2883.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.89.244.108\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T08:43:33.9166428Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:43:33.9166428Z\"\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOVVaWEp0WHpRMllUQm1NRFU1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19UZXJtX2Q1OThiYWRh?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOVVaWEp0WDJRMU9UaGlZV1JoP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9033,7 +8531,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19UZXJtX2Q1OThiYWRh?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -9042,25 +8540,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e5463b9f-57ff-4800-a41e-a2aaf782ccd9"
+ "4751a1ad-4c80-4e53-baed-b744807d7ddc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11937"
],
"x-ms-correlation-request-id": [
- "160168d6-dbc0-4e57-84ac-3675fe78bf2a"
+ "4751a1ad-4c80-4e53-baed-b744807d7ddc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100340Z:160168d6-dbc0-4e57-84ac-3675fe78bf2a"
+ "WESTCENTRALUS:20220322T104518Z:4751a1ad-4c80-4e53-baed-b744807d7ddc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:03:39 GMT"
+ "Tue, 22 Mar 2022 10:45:17 GMT"
],
"Expires": [
"-1"
@@ -9073,19 +8571,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOVVaWEp0WHpRMllUQm1NRFU1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19UZXJtX2Q1OThiYWRh?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOVVaWEp0WDJRMU9UaGlZV1JoP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9099,25 +8597,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "27db0f54-cf47-44d5-a46a-15b71a0f32c2"
+ "14985459-b4e5-4df4-8501-2d527bf22e09"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
+ "11936"
],
"x-ms-correlation-request-id": [
- "a9997d45-90dc-4a11-b694-fbe6c913a6e6"
+ "14985459-b4e5-4df4-8501-2d527bf22e09"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100440Z:a9997d45-90dc-4a11-b694-fbe6c913a6e6"
+ "WESTCENTRALUS:20220322T104618Z:14985459-b4e5-4df4-8501-2d527bf22e09"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:04:40 GMT"
+ "Tue, 22 Mar 2022 10:46:18 GMT"
],
"Expires": [
"-1"
@@ -9130,19 +8628,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOVVaWEp0WHpRMllUQm1NRFU1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps2883/operationresults/Y2VudHJhbHVzOnBzMjg4M19UZXJtX2Q1OThiYWRh?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI4ODMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpnNE0xOVVaWEp0WDJRMU9UaGlZV1JoP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9156,25 +8654,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f4e35e32-6f03-40b0-9ffb-81b9f4596120"
+ "db6fa3aa-9065-4194-9989-250bea21dd9c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11935"
],
"x-ms-correlation-request-id": [
- "32474980-34e4-4768-82c3-585828fe0f3a"
+ "db6fa3aa-9065-4194-9989-250bea21dd9c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100440Z:32474980-34e4-4768-82c3-585828fe0f3a"
+ "WESTCENTRALUS:20220322T104618Z:db6fa3aa-9065-4194-9989-250bea21dd9c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:04:40 GMT"
+ "Tue, 22 Mar 2022 10:46:18 GMT"
],
"Expires": [
"-1"
@@ -9187,22 +8685,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzY/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9213,7 +8711,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9UZXJtXzUwZDcyMjgw?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -9222,7 +8720,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "957d6942-0fb6-45bd-a516-9691ff577cc3"
+ "afe7cffa-cae5-41d7-b102-6827005ebd1a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -9231,19 +8729,19 @@
"14998"
],
"x-ms-correlation-request-id": [
- "c77adba6-7f38-4ccb-9099-ab2ddb7555a2"
+ "afe7cffa-cae5-41d7-b102-6827005ebd1a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100441Z:c77adba6-7f38-4ccb-9099-ab2ddb7555a2"
+ "WESTCENTRALUS:20220322T104619Z:afe7cffa-cae5-41d7-b102-6827005ebd1a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:04:40 GMT"
+ "Tue, 22 Mar 2022 10:46:19 GMT"
],
"Content-Length": [
- "2100"
+ "2559"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9252,23 +8750,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286\",\r\n \"name\": \"ps8286\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAY+o0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2021-07-15T07:53:48.2976481Z\",\r\n \"gatewayUrl\": \"https://ps8286.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8286-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8286.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8286.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8286.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8286.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8286.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.182.227.97\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976\",\r\n \"name\": \"ps4976\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAof9o=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2022-03-22T09:44:52.8608536Z\",\r\n \"gatewayUrl\": \"https://ps4976.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps4976-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps4976.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps4976.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps4976.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps4976.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4976.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.21.205\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T09:44:52.826263Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T09:44:52.826263Z\"\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOVVaWEp0WDJZME56Vm1PV1UwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9UZXJtXzUwZDcyMjgw?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOVVaWEp0WHpVd1pEY3lNamd3P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9279,7 +8777,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9UZXJtXzUwZDcyMjgw?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -9288,25 +8786,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "445add2b-b8ab-4f12-adcb-cea6b84dd937"
+ "07f6c736-8418-4aa3-b398-0845aa80bc30"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11934"
],
"x-ms-correlation-request-id": [
- "be70eb69-58d6-44f6-89ae-a366b1664321"
+ "07f6c736-8418-4aa3-b398-0845aa80bc30"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100541Z:be70eb69-58d6-44f6-89ae-a366b1664321"
+ "WESTCENTRALUS:20220322T104719Z:07f6c736-8418-4aa3-b398-0845aa80bc30"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:05:40 GMT"
+ "Tue, 22 Mar 2022 10:47:19 GMT"
],
"Expires": [
"-1"
@@ -9319,19 +8817,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOVVaWEp0WDJZME56Vm1PV1UwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9UZXJtXzUwZDcyMjgw?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOVVaWEp0WHpVd1pEY3lNamd3P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9345,25 +8843,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cdf35546-7e27-4fcf-8da5-f3403eec294d"
+ "dc08f74e-b974-4282-b001-730559ea0b0f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11933"
],
"x-ms-correlation-request-id": [
- "6cf07b23-3e7d-47e2-9483-806e30078fe6"
+ "dc08f74e-b974-4282-b001-730559ea0b0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100641Z:6cf07b23-3e7d-47e2-9483-806e30078fe6"
+ "WESTCENTRALUS:20220322T104819Z:dc08f74e-b974-4282-b001-730559ea0b0f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:06:41 GMT"
+ "Tue, 22 Mar 2022 10:48:19 GMT"
],
"Expires": [
"-1"
@@ -9376,19 +8874,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOVVaWEp0WDJZME56Vm1PV1UwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4976/operationresults/Y2VudHJhbHVzOnBzNDk3Nl9UZXJtXzUwZDcyMjgw?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ5NzYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRrM05sOVVaWEp0WHpVd1pEY3lNamd3P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9402,25 +8900,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "51b9d8c3-c3a3-4933-b66c-243fd6248144"
+ "56ff1ae6-3ebc-4a30-a057-35bbb00dd820"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11932"
],
"x-ms-correlation-request-id": [
- "e5cdd639-cb67-43a3-b412-32e73a128ad0"
+ "56ff1ae6-3ebc-4a30-a057-35bbb00dd820"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100641Z:e5cdd639-cb67-43a3-b412-32e73a128ad0"
+ "WESTCENTRALUS:20220322T104819Z:56ff1ae6-3ebc-4a30-a057-35bbb00dd820"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:06:41 GMT"
+ "Tue, 22 Mar 2022 10:48:19 GMT"
],
"Expires": [
"-1"
@@ -9433,22 +8931,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ4ODk/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9459,7 +8957,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784/operationresults/d2VzdGV1cm9wZTpwczc4NF9UZXJtX2VkYjBmNGM3?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889/operationresults/d2VzdGV1cm9wZTpwczQ4ODlfVGVybV84NWMwZjM1Mw==?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -9468,7 +8966,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1a300f39-1c02-4cd3-81df-c2f6cd806e99"
+ "7c43aeaf-0e83-4bfa-90c2-7475acd846c5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -9477,19 +8975,19 @@
"14997"
],
"x-ms-correlation-request-id": [
- "9918ecc6-915a-419c-9e66-8e13ad5c51e0"
+ "7c43aeaf-0e83-4bfa-90c2-7475acd846c5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100643Z:9918ecc6-915a-419c-9e66-8e13ad5c51e0"
+ "WESTCENTRALUS:20220322T104820Z:7c43aeaf-0e83-4bfa-90c2-7475acd846c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:06:43 GMT"
+ "Tue, 22 Mar 2022 10:48:20 GMT"
],
"Content-Length": [
- "1753"
+ "2206"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9498,23 +8996,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784\",\r\n \"name\": \"ps784\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAABjBxU=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2021-07-15T10:01:34.4579155Z\",\r\n \"gatewayUrl\": \"https://ps784.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps784.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889\",\r\n \"name\": \"ps4889\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAACWXpw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"second.apim@powershell.org\",\r\n \"publisherName\": \"second.apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Deleting\",\r\n \"createdAtUtc\": \"2022-03-22T10:42:11.0081683Z\",\r\n \"gatewayUrl\": \"https://ps4889.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps4889.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"mtv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T10:42:10.9125281Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T10:42:10.9125281Z\"\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784/operationresults/d2VzdGV1cm9wZTpwczc4NF9UZXJtX2VkYjBmNGM3?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4NC9vcGVyYXRpb25yZXN1bHRzL2QyVnpkR1YxY205d1pUcHdjemM0TkY5VVpYSnRYMlZrWWpCbU5HTTM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889/operationresults/d2VzdGV1cm9wZTpwczQ4ODlfVGVybV84NWMwZjM1Mw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ4ODkvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEdWMWNtOXdaVHB3Y3pRNE9EbGZWR1Z5YlY4NE5XTXdaak0xTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9528,25 +9026,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5670e2a3-fe6b-4960-a9cb-76ec1b814d6e"
+ "5f94f216-4bf1-470a-b195-436f5e5672e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11931"
],
"x-ms-correlation-request-id": [
- "26954d76-bec6-40c9-a207-0c8fbd6baeef"
+ "5f94f216-4bf1-470a-b195-436f5e5672e0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100743Z:26954d76-bec6-40c9-a207-0c8fbd6baeef"
+ "WESTCENTRALUS:20220322T104921Z:5f94f216-4bf1-470a-b195-436f5e5672e0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:07:42 GMT"
+ "Tue, 22 Mar 2022 10:49:20 GMT"
],
"Expires": [
"-1"
@@ -9559,19 +9057,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784/operationresults/d2VzdGV1cm9wZTpwczc4NF9UZXJtX2VkYjBmNGM3?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4NC9vcGVyYXRpb25yZXN1bHRzL2QyVnpkR1YxY205d1pUcHdjemM0TkY5VVpYSnRYMlZrWWpCbU5HTTM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9455/providers/Microsoft.ApiManagement/service/ps4889/operationresults/d2VzdGV1cm9wZTpwczQ4ODlfVGVybV84NWMwZjM1Mw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ4ODkvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEdWMWNtOXdaVHB3Y3pRNE9EbGZWR1Z5YlY4NE5XTXdaak0xTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2cf73c82-37d4-4659-a250-93274851d454"
+ "a5c38fcb-38a8-4f07-ae43-49682aa326c2"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -9585,25 +9083,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eaed15f9-c50e-4762-88b9-3e929493796f"
+ "3e64cb67-5693-4230-84fe-1f6f0f1f7f85"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
+ "11930"
],
"x-ms-correlation-request-id": [
- "42178f5b-ee7a-49cf-ae5f-760f1298f761"
+ "3e64cb67-5693-4230-84fe-1f6f0f1f7f85"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100743Z:42178f5b-ee7a-49cf-ae5f-760f1298f761"
+ "WESTCENTRALUS:20220322T104921Z:3e64cb67-5693-4230-84fe-1f6f0f1f7f85"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:07:43 GMT"
+ "Tue, 22 Mar 2022 10:49:20 GMT"
],
"Expires": [
"-1"
@@ -9616,22 +9114,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8137?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODEzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps9455?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTQ1NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "478120a9-84d4-463e-a2a3-db240b297ef8"
+ "b546ac1c-ae03-44d8-a140-bc32377ff795"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -9642,7 +9140,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -9651,13 +9149,13 @@
"14999"
],
"x-ms-request-id": [
- "ed63e8b0-e025-4d1b-920b-64d8a016ab1b"
+ "5eb21d08-070b-47f6-9c89-a84b925d5b79"
],
"x-ms-correlation-request-id": [
- "ed63e8b0-e025-4d1b-920b-64d8a016ab1b"
+ "5eb21d08-070b-47f6-9c89-a84b925d5b79"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100745Z:ed63e8b0-e025-4d1b-920b-64d8a016ab1b"
+ "WESTUS:20220322T104923Z:5eb21d08-070b-47f6-9c89-a84b925d5b79"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9666,7 +9164,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:07:45 GMT"
+ "Tue, 22 Mar 2022 10:49:23 GMT"
],
"Expires": [
"-1"
@@ -9679,16 +9177,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5UVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -9699,7 +9197,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -9708,13 +9206,13 @@
"11999"
],
"x-ms-request-id": [
- "8aeb1e94-d149-4df3-a345-ed9884ebc5dc"
+ "26de7f7d-5e8a-4251-9fd5-6e8c2056eec2"
],
"x-ms-correlation-request-id": [
- "8aeb1e94-d149-4df3-a345-ed9884ebc5dc"
+ "26de7f7d-5e8a-4251-9fd5-6e8c2056eec2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100800Z:8aeb1e94-d149-4df3-a345-ed9884ebc5dc"
+ "WESTUS:20220322T104939Z:26de7f7d-5e8a-4251-9fd5-6e8c2056eec2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9723,7 +9221,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:08:00 GMT"
+ "Tue, 22 Mar 2022 10:49:38 GMT"
],
"Expires": [
"-1"
@@ -9736,16 +9234,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5UVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -9756,7 +9254,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -9765,13 +9263,13 @@
"11998"
],
"x-ms-request-id": [
- "80c2d617-a31d-4c8c-8dd6-4cf52c131993"
+ "75f4fea4-c07a-4725-9c32-e36a0b694da0"
],
"x-ms-correlation-request-id": [
- "80c2d617-a31d-4c8c-8dd6-4cf52c131993"
+ "75f4fea4-c07a-4725-9c32-e36a0b694da0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100815Z:80c2d617-a31d-4c8c-8dd6-4cf52c131993"
+ "WESTUS:20220322T104954Z:75f4fea4-c07a-4725-9c32-e36a0b694da0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9780,7 +9278,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:08:15 GMT"
+ "Tue, 22 Mar 2022 10:49:53 GMT"
],
"Expires": [
"-1"
@@ -9793,16 +9291,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5UVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -9812,17 +9310,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-request-id": [
- "44ce4188-39ab-493a-ab03-d75eddf44fb3"
+ "b2a858ed-a107-4926-ba8d-d746e2a18c5c"
],
"x-ms-correlation-request-id": [
- "44ce4188-39ab-493a-ab03-d75eddf44fb3"
+ "b2a858ed-a107-4926-ba8d-d746e2a18c5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100830Z:44ce4188-39ab-493a-ab03-d75eddf44fb3"
+ "WESTUS:20220322T105009Z:b2a858ed-a107-4926-ba8d-d746e2a18c5c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9831,7 +9335,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:08:30 GMT"
+ "Tue, 22 Mar 2022 10:50:08 GMT"
],
"Expires": [
"-1"
@@ -9841,19 +9345,19 @@
]
},
"ResponseBody": "",
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5UVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -9863,17 +9367,125 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-request-id": [
- "ecc8659b-5f8c-467e-8f2b-e27789bb4102"
+ "0c2c8e51-af8c-45ef-bd59-d084dad00db2"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c2c8e51-af8c-45ef-bd59-d084dad00db2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T105024Z:0c2c8e51-af8c-45ef-bd59-d084dad00db2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 10:50:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5UVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "99c76edd-fdc9-47ec-aed9-a279493fc1f3"
+ ],
+ "x-ms-correlation-request-id": [
+ "99c76edd-fdc9-47ec-aed9-a279493fc1f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T105039Z:99c76edd-fdc9-47ec-aed9-a279493fc1f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 10:50:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0NTUtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME5UVXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "752501da-bc51-4f0a-8be7-4e7fdbec1d20"
],
"x-ms-correlation-request-id": [
- "ecc8659b-5f8c-467e-8f2b-e27789bb4102"
+ "752501da-bc51-4f0a-8be7-4e7fdbec1d20"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T100830Z:ecc8659b-5f8c-467e-8f2b-e27789bb4102"
+ "WESTUS:20220322T105039Z:752501da-bc51-4f0a-8be7-4e7fdbec1d20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9882,7 +9494,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 10:08:30 GMT"
+ "Tue, 22 Mar 2022 10:50:39 GMT"
],
"Expires": [
"-1"
@@ -9897,10 +9509,10 @@
],
"Names": {
"Test-CrudApiManagement": [
- "ps8137",
- "ps8286",
- "ps4154",
- "ps784"
+ "ps9455",
+ "ps2883",
+ "ps4976",
+ "ps4889"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementVirtualNetworkStv2CRUD.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementVirtualNetworkStv2CRUD.json
new file mode 100644
index 000000000000..a72208e10854
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementVirtualNetworkStv2CRUD.json
@@ -0,0 +1,7647 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps7766?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNzc2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d620555b-4f42-4fb6-b261-b4050edf0d6f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "f42f5884-d220-4b3e-bfa9-8d7d842ceb28"
+ ],
+ "x-ms-correlation-request-id": [
+ "f42f5884-d220-4b3e-bfa9-8d7d842ceb28"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T002611Z:f42f5884-d220-4b3e-bfa9-8d7d842ceb28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:26:11 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766\",\r\n \"name\": \"ps7766\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip\",\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "665"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAABc8O4=\""
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "afaf6e1a-306a-465c-87f6-096a7db1872f",
+ "afaf6e1a-306a-465c-87f6-096a7db1872f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "afaf6e1a-306a-465c-87f6-096a7db1872f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T002618Z:afaf6e1a-306a-465c-87f6-096a7db1872f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:26:17 GMT"
+ ],
+ "Content-Length": [
+ "2092"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471\",\r\n \"name\": \"ps471\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABc8O4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2022-04-29T00:26:14.569002Z\",\r\n \"gatewayUrl\": \"https://ps471.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps471.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-04-29T00:26:14.5190128Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-04-29T00:26:14.5190128Z\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps471.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false,\r\n \"certificateSource\": \"BuiltIn\"\r\n }\r\n ],\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet\"\r\n },\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvnetscuip\",\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/stv2subnet\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"disableGateway\": false,\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2457"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAABc+s4=\""
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1d66a3fc-0735-4b6e-85c0-463c1b2576fc",
+ "1d66a3fc-0735-4b6e-85c0-463c1b2576fc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d66a3fc-0735-4b6e-85c0-463c1b2576fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012441Z:1d66a3fc-0735-4b6e-85c0-463c1b2576fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:24:40 GMT"
+ ],
+ "Content-Length": [
+ "2936"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471\",\r\n \"name\": \"ps471\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABc+s4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2022-04-29T00:26:14.569002Z\",\r\n \"gatewayUrl\": \"https://ps471.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps471-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps471.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps471.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps471.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps471.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps471.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.150.51.86\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-04-29T00:26:14.5190128Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-04-29T00:26:14.5190128Z\"\r\n }\r\n}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1b648b7-b94a-4b58-991d-9d4f4278e046"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1b648b7-b94a-4b58-991d-9d4f4278e046"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T002718Z:c1b648b7-b94a-4b58-991d-9d4f4278e046"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:27:18 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a7f40902-b142-4ea7-a720-4887f64786db"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7f40902-b142-4ea7-a720-4887f64786db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T002819Z:a7f40902-b142-4ea7-a720-4887f64786db"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:28:18 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "560f38a7-1ca1-44c8-841b-14225bd5f8b4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "560f38a7-1ca1-44c8-841b-14225bd5f8b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T002919Z:560f38a7-1ca1-44c8-841b-14225bd5f8b4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:29:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cab23d25-6e70-42ee-8e0f-16df8864724e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "cab23d25-6e70-42ee-8e0f-16df8864724e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003019Z:cab23d25-6e70-42ee-8e0f-16df8864724e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:30:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8509ef42-376c-4317-b9de-4f833cdb17d4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "8509ef42-376c-4317-b9de-4f833cdb17d4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003120Z:8509ef42-376c-4317-b9de-4f833cdb17d4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:31:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "15dcc9e0-8541-4290-8cca-57ea7a6ca32b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "15dcc9e0-8541-4290-8cca-57ea7a6ca32b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003220Z:15dcc9e0-8541-4290-8cca-57ea7a6ca32b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:32:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1d2768c2-89a9-4a7c-8ca8-ad941192d681"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d2768c2-89a9-4a7c-8ca8-ad941192d681"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003320Z:1d2768c2-89a9-4a7c-8ca8-ad941192d681"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:33:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "48ca3566-0908-4f7a-b24e-c1a85a074bd3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "48ca3566-0908-4f7a-b24e-c1a85a074bd3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003421Z:48ca3566-0908-4f7a-b24e-c1a85a074bd3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:34:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e67cfcd5-523a-4ea4-b084-59858a602f3d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "e67cfcd5-523a-4ea4-b084-59858a602f3d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003521Z:e67cfcd5-523a-4ea4-b084-59858a602f3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:35:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0b2151ef-3c0e-4739-8395-74e4bb567202"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b2151ef-3c0e-4739-8395-74e4bb567202"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003621Z:0b2151ef-3c0e-4739-8395-74e4bb567202"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:36:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1bd2ef1f-1ab2-4946-aa1e-119e95bd3553"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "1bd2ef1f-1ab2-4946-aa1e-119e95bd3553"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003721Z:1bd2ef1f-1ab2-4946-aa1e-119e95bd3553"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:37:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "25dc4e46-15ac-4ae6-8b25-cad64ca06ca5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "25dc4e46-15ac-4ae6-8b25-cad64ca06ca5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003821Z:25dc4e46-15ac-4ae6-8b25-cad64ca06ca5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:38:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "15ddc811-ba28-48ed-8c87-f5141e3ee44d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "15ddc811-ba28-48ed-8c87-f5141e3ee44d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T003922Z:15ddc811-ba28-48ed-8c87-f5141e3ee44d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:39:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ec579fea-1757-4435-ae72-2a7c96f9f2d0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec579fea-1757-4435-ae72-2a7c96f9f2d0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004022Z:ec579fea-1757-4435-ae72-2a7c96f9f2d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:40:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "871f8268-f851-4e8d-ae6e-928739121d2d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "871f8268-f851-4e8d-ae6e-928739121d2d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004123Z:871f8268-f851-4e8d-ae6e-928739121d2d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:41:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1b80f892-e6bd-4e3a-a5a9-8bcf9abe67f3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b80f892-e6bd-4e3a-a5a9-8bcf9abe67f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004223Z:1b80f892-e6bd-4e3a-a5a9-8bcf9abe67f3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:42:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d8be576d-b62e-473e-bbc4-7fcb7b92e0e1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8be576d-b62e-473e-bbc4-7fcb7b92e0e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004323Z:d8be576d-b62e-473e-bbc4-7fcb7b92e0e1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:43:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "662317fc-1d72-4810-a868-556e8172d1fb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "662317fc-1d72-4810-a868-556e8172d1fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004424Z:662317fc-1d72-4810-a868-556e8172d1fb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:44:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cdb4d1c1-db12-49ef-9032-77c54728a9d5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "cdb4d1c1-db12-49ef-9032-77c54728a9d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004524Z:cdb4d1c1-db12-49ef-9032-77c54728a9d5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:45:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e9a8bd8e-d0e0-4db4-afd4-1ffe5345667f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9a8bd8e-d0e0-4db4-afd4-1ffe5345667f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004624Z:e9a8bd8e-d0e0-4db4-afd4-1ffe5345667f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:46:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9321227-8e52-4dfe-9719-50352b5e88f5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9321227-8e52-4dfe-9719-50352b5e88f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004724Z:a9321227-8e52-4dfe-9719-50352b5e88f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:47:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8af5a5eb-e1f1-47e0-b278-5214595748b2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "8af5a5eb-e1f1-47e0-b278-5214595748b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004825Z:8af5a5eb-e1f1-47e0-b278-5214595748b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:48:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cd3e8b4c-794f-4279-ae07-850317c4b9ae"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd3e8b4c-794f-4279-ae07-850317c4b9ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T004925Z:cd3e8b4c-794f-4279-ae07-850317c4b9ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:49:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bfd1dccd-fcfc-4189-9577-97289a964893"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfd1dccd-fcfc-4189-9577-97289a964893"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005026Z:bfd1dccd-fcfc-4189-9577-97289a964893"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:50:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b71a650d-cfd0-4fb6-a0f7-a71aff30fe13"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-correlation-request-id": [
+ "b71a650d-cfd0-4fb6-a0f7-a71aff30fe13"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005126Z:b71a650d-cfd0-4fb6-a0f7-a71aff30fe13"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:51:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de29c4d5-ccbc-419c-93cf-b1ba496fccf6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-correlation-request-id": [
+ "de29c4d5-ccbc-419c-93cf-b1ba496fccf6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005226Z:de29c4d5-ccbc-419c-93cf-b1ba496fccf6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:52:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "96294ef0-8d2b-48c3-92ea-e232d2e35563"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-correlation-request-id": [
+ "96294ef0-8d2b-48c3-92ea-e232d2e35563"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005327Z:96294ef0-8d2b-48c3-92ea-e232d2e35563"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:53:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b6535f25-aa92-498f-b79d-b95a3379a475"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6535f25-aa92-498f-b79d-b95a3379a475"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005427Z:b6535f25-aa92-498f-b79d-b95a3379a475"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:54:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ee592651-31f6-4083-a49e-3f6f2f842d39"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee592651-31f6-4083-a49e-3f6f2f842d39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005527Z:ee592651-31f6-4083-a49e-3f6f2f842d39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:55:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0277b4db-aa11-4ce9-9445-d6a3874a59bd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-correlation-request-id": [
+ "0277b4db-aa11-4ce9-9445-d6a3874a59bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005628Z:0277b4db-aa11-4ce9-9445-d6a3874a59bd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:56:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "58886040-81fa-4c3a-a21a-d4dd25cd62fd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-correlation-request-id": [
+ "58886040-81fa-4c3a-a21a-d4dd25cd62fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005728Z:58886040-81fa-4c3a-a21a-d4dd25cd62fd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:57:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e851cf79-5894-4ff6-b1c5-ec7a426e814f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-correlation-request-id": [
+ "e851cf79-5894-4ff6-b1c5-ec7a426e814f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005829Z:e851cf79-5894-4ff6-b1c5-ec7a426e814f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:58:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1d2b8d0b-69c0-4b4a-b4c0-b7523ad90357"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d2b8d0b-69c0-4b4a-b4c0-b7523ad90357"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T005929Z:1d2b8d0b-69c0-4b4a-b4c0-b7523ad90357"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 00:59:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7a515386-a343-42ff-9914-3aff3139f182"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a515386-a343-42ff-9914-3aff3139f182"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010029Z:7a515386-a343-42ff-9914-3aff3139f182"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:00:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d24edb3c-31f5-4820-97cc-834a54dfc10f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-correlation-request-id": [
+ "d24edb3c-31f5-4820-97cc-834a54dfc10f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010130Z:d24edb3c-31f5-4820-97cc-834a54dfc10f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:01:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7b1a0295-0010-42cc-bad6-ecbfc43910c6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b1a0295-0010-42cc-bad6-ecbfc43910c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010230Z:7b1a0295-0010-42cc-bad6-ecbfc43910c6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:02:30 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9dcee50-68a0-44f8-b6b8-7506f6b68b26"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9dcee50-68a0-44f8-b6b8-7506f6b68b26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010330Z:a9dcee50-68a0-44f8-b6b8-7506f6b68b26"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:03:30 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a6cf76c2-9a3a-4a7b-b0f8-e49731d60718"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6cf76c2-9a3a-4a7b-b0f8-e49731d60718"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010431Z:a6cf76c2-9a3a-4a7b-b0f8-e49731d60718"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:04:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c4b1a8a-d179-4cdf-991e-0478a37a0503"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c4b1a8a-d179-4cdf-991e-0478a37a0503"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010531Z:4c4b1a8a-d179-4cdf-991e-0478a37a0503"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:05:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "919de3c1-6b29-4ec0-8d38-23f9ea3da39c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-correlation-request-id": [
+ "919de3c1-6b29-4ec0-8d38-23f9ea3da39c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010631Z:919de3c1-6b29-4ec0-8d38-23f9ea3da39c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:06:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "89760f44-25f6-40e1-abba-910027f01296"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-correlation-request-id": [
+ "89760f44-25f6-40e1-abba-910027f01296"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010732Z:89760f44-25f6-40e1-abba-910027f01296"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:07:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "112eeece-b06e-4499-b36a-f3adc8d2c4af"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-correlation-request-id": [
+ "112eeece-b06e-4499-b36a-f3adc8d2c4af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010832Z:112eeece-b06e-4499-b36a-f3adc8d2c4af"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:08:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bea7c226-14ad-4b77-a4f5-1920e11e3fe2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
+ ],
+ "x-ms-correlation-request-id": [
+ "bea7c226-14ad-4b77-a4f5-1920e11e3fe2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T010932Z:bea7c226-14ad-4b77-a4f5-1920e11e3fe2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:09:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de70c101-8cc4-482c-bdad-047e523aab78"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-correlation-request-id": [
+ "de70c101-8cc4-482c-bdad-047e523aab78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011033Z:de70c101-8cc4-482c-bdad-047e523aab78"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:10:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4481105e-0f4b-4c37-a6bc-f9dd4fa56408"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
+ "x-ms-correlation-request-id": [
+ "4481105e-0f4b-4c37-a6bc-f9dd4fa56408"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011133Z:4481105e-0f4b-4c37-a6bc-f9dd4fa56408"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:11:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "87c68316-9f1d-4109-8b35-3d76a150cb0a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-correlation-request-id": [
+ "87c68316-9f1d-4109-8b35-3d76a150cb0a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011233Z:87c68316-9f1d-4109-8b35-3d76a150cb0a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:12:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "972f982a-d438-4546-a195-6bf38ac17a9c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11953"
+ ],
+ "x-ms-correlation-request-id": [
+ "972f982a-d438-4546-a195-6bf38ac17a9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011333Z:972f982a-d438-4546-a195-6bf38ac17a9c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:13:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b2c74ed3-ed7b-491f-9733-25404b0d700d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2c74ed3-ed7b-491f-9733-25404b0d700d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011433Z:b2c74ed3-ed7b-491f-9733-25404b0d700d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:14:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a5843535-e657-4d24-a2ea-5ae660182542"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11951"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5843535-e657-4d24-a2ea-5ae660182542"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011534Z:a5843535-e657-4d24-a2ea-5ae660182542"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:15:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "120ab592-41c1-4850-9089-5e81d04ed490"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-correlation-request-id": [
+ "120ab592-41c1-4850-9089-5e81d04ed490"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011634Z:120ab592-41c1-4850-9089-5e81d04ed490"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:16:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "29a7f48f-7eaa-4a84-8919-210873a70cb2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-correlation-request-id": [
+ "29a7f48f-7eaa-4a84-8919-210873a70cb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011734Z:29a7f48f-7eaa-4a84-8919-210873a70cb2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:17:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "88d0d097-ff0d-49f2-bad2-12dddf91734a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-correlation-request-id": [
+ "88d0d097-ff0d-49f2-bad2-12dddf91734a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011834Z:88d0d097-ff0d-49f2-bad2-12dddf91734a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:18:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8740b64b-a637-4d61-be65-841ef1f750b8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-correlation-request-id": [
+ "8740b64b-a637-4d61-be65-841ef1f750b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T011934Z:8740b64b-a637-4d61-be65-841ef1f750b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:19:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a16758f3-51f7-4f5f-bdf6-ff3643290bac"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-correlation-request-id": [
+ "a16758f3-51f7-4f5f-bdf6-ff3643290bac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012035Z:a16758f3-51f7-4f5f-bdf6-ff3643290bac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:20:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "27f89880-3a2a-4427-b929-285fa6d9d076"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-correlation-request-id": [
+ "27f89880-3a2a-4427-b929-285fa6d9d076"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012135Z:27f89880-3a2a-4427-b929-285fa6d9d076"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:21:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7811d0b3-b834-457f-ba7d-0fd0e360326b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-correlation-request-id": [
+ "7811d0b3-b834-457f-ba7d-0fd0e360326b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012235Z:7811d0b3-b834-457f-ba7d-0fd0e360326b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:22:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "61668c72-e358-41ec-b2fd-871b4417509d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
+ "x-ms-correlation-request-id": [
+ "61668c72-e358-41ec-b2fd-871b4417509d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012336Z:61668c72-e358-41ec-b2fd-871b4417509d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:23:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX0FjdF84M2E0NWVmMw==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMEZqZEY4NE0yRTBOV1ZtTXc9PT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ec85873e-db5b-4bcb-a165-5fe224ed4e27"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e04aa59e-ad36-45f9-9a75-220ef127def7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-correlation-request-id": [
+ "e04aa59e-ad36-45f9-9a75-220ef127def7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012436Z:e04aa59e-ad36-45f9-9a75-220ef127def7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:24:35 GMT"
+ ],
+ "Content-Length": [
+ "2928"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471\",\r\n \"name\": \"ps471\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABc+qw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-04-29T00:26:14.569002Z\",\r\n \"gatewayUrl\": \"https://ps471.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps471-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps471.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps471.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps471.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps471.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps471.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.150.51.86\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-04-29T00:26:14.5190128Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-04-29T00:26:14.5190128Z\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/networkstatus?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9uZXR3b3Jrc3RhdHVzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "088cfef3-466d-47ab-88a6-88c83e3a3764"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2a8b1da1-290d-47a4-973e-996d3968ee74"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11941"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a8b1da1-290d-47a4-973e-996d3968ee74"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012436Z:2a8b1da1-290d-47a4-973e-996d3968ee74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:24:36 GMT"
+ ],
+ "Content-Length": [
+ "3439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.4562247Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.4562247Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:45.0968591Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:45.0968591Z\",\r\n \"resourceType\": \"FileStorage\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.2062256Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.2062256Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.2374787Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.2374787Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlwenpbj1rxnyllcmq.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.0968537Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.0968537Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.2561012Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.2561012Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://apikv-ff8aggjnoqpo1rpvut.vault.azure.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:47.7066272Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:47.7066272Z\",\r\n \"resourceType\": \"AzureKeyVault\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:51.8480316Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:51.8480316Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:43.1750523Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:43.1750523Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.9562788Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.9562788Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://partner.prod.repmap.microsoft.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:43.1650509Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:43.1650509Z\",\r\n \"resourceType\": \"CaptchaEndpoint\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.5661725Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.5661725Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.3161156Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.3161156Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:43.8351267Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:43.8351267Z\",\r\n \"resourceType\": \"SourceControl\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:18:46.9762981Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:18:46.9762981Z\",\r\n \"resourceType\": \"Email\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n }\r\n]",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/networkstatus?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9uZXR3b3Jrc3RhdHVzP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "919a60b3-3331-4467-92c9-5c641eeb9876"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1caea0c1-ece2-4081-9e49-64015ece6aec"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "1caea0c1-ece2-4081-9e49-64015ece6aec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015052Z:1caea0c1-ece2-4081-9e49-64015ece6aec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:50:51 GMT"
+ ],
+ "Content-Length": [
+ "5800"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.3150526Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.3150526Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.3031766Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.3031766Z\",\r\n \"resourceType\": \"FileStorage\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlwenpbj1rxnyllcmq.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.4615493Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.4615493Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://apikv-85zar0jhtshnzhxmzs.vault.azure.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.3150526Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.3150526Z\",\r\n \"resourceType\": \"AzureKeyVault\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.3031766Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.3031766Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.1441256Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.1441256Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.393289Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.393289Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://partner.prod.repmap.microsoft.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.2056766Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.2056766Z\",\r\n \"resourceType\": \"CaptchaEndpoint\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.4419458Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.4419458Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.2056766Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.2056766Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.2838076Z\",\r\n \"resourceType\": \"SourceControl\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:47:46.4917894Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:47:46.4917894Z\",\r\n \"resourceType\": \"Email\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimst1gmh73dz7uypkqsksx.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:37.9153675Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:37.9153675Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:38.1653722Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:38.1653722Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimst5nkbzlwqxsbslaiyxi.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:38.1036947Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:38.1036947Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlwenpbj1rxnyllcmq.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:38.3221245Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:38.3221245Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:37.9153675Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:37.9153675Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:37.9833949Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:37.9833949Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:38.0247465Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:38.0247465Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:38.1036947Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:38.1036947Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:38.0560498Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:38.0560498Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-04-29T01:41:37.8228444Z\",\r\n \"lastStatusChange\": \"2022-04-29T01:41:37.8228444Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n }\r\n]",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a0b0d82c-14fa-4d2e-a9d6-2efcf26ee83b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAABc+qw=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "646c33ac-5558-4d8c-bba7-d014d1daa70d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-correlation-request-id": [
+ "646c33ac-5558-4d8c-bba7-d014d1daa70d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012437Z:646c33ac-5558-4d8c-bba7-d014d1daa70d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:24:36 GMT"
+ ],
+ "Content-Length": [
+ "2928"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471\",\r\n \"name\": \"ps471\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABc+qw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-04-29T00:26:14.569002Z\",\r\n \"gatewayUrl\": \"https://ps471.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps471-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps471.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps471.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps471.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps471.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps471.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.150.51.86\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-04-29T00:26:14.5190128Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-04-29T00:26:14.5190128Z\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "93e2c55c-2e1b-4d90-8d53-0febae9590cd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "93e2c55c-2e1b-4d90-8d53-0febae9590cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012541Z:93e2c55c-2e1b-4d90-8d53-0febae9590cd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:25:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a322b468-dd02-4599-960c-a6f8415975aa"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-correlation-request-id": [
+ "a322b468-dd02-4599-960c-a6f8415975aa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012641Z:a322b468-dd02-4599-960c-a6f8415975aa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:26:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "430fc39f-db11-4362-a709-1ff16f20842a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "430fc39f-db11-4362-a709-1ff16f20842a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012742Z:430fc39f-db11-4362-a709-1ff16f20842a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:27:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4517d3e8-e31b-428e-8592-8c2e6f740fde"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "4517d3e8-e31b-428e-8592-8c2e6f740fde"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012842Z:4517d3e8-e31b-428e-8592-8c2e6f740fde"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:28:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "15ad303e-0646-4c79-87b5-5ab7d4350d5d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "15ad303e-0646-4c79-87b5-5ab7d4350d5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T012942Z:15ad303e-0646-4c79-87b5-5ab7d4350d5d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:29:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a185a937-d4e9-43eb-8946-cf912e427f84"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-correlation-request-id": [
+ "a185a937-d4e9-43eb-8946-cf912e427f84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013042Z:a185a937-d4e9-43eb-8946-cf912e427f84"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:30:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eaa1c67e-6560-4136-85e2-479743a1e735"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaa1c67e-6560-4136-85e2-479743a1e735"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013143Z:eaa1c67e-6560-4136-85e2-479743a1e735"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:31:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e56f0c5d-8905-447d-8f88-093aa2651ca2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "e56f0c5d-8905-447d-8f88-093aa2651ca2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013243Z:e56f0c5d-8905-447d-8f88-093aa2651ca2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:32:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0447121f-f436-4438-9356-caed0679f1fd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-correlation-request-id": [
+ "0447121f-f436-4438-9356-caed0679f1fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013344Z:0447121f-f436-4438-9356-caed0679f1fd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:33:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "53713551-bc12-48bf-8c55-1d64a82bbecf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "x-ms-correlation-request-id": [
+ "53713551-bc12-48bf-8c55-1d64a82bbecf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013444Z:53713551-bc12-48bf-8c55-1d64a82bbecf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:34:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a391aae8-cc00-48aa-a88a-c353f90e24e2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "a391aae8-cc00-48aa-a88a-c353f90e24e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013544Z:a391aae8-cc00-48aa-a88a-c353f90e24e2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:35:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "af035aa0-c057-4b41-8c86-472015827556"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "af035aa0-c057-4b41-8c86-472015827556"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013645Z:af035aa0-c057-4b41-8c86-472015827556"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:36:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "26ebceef-08be-4594-8fa8-480d4a82e59c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "26ebceef-08be-4594-8fa8-480d4a82e59c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013745Z:26ebceef-08be-4594-8fa8-480d4a82e59c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:37:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c2d74002-aad5-41aa-8edd-0e8354fd8f1b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2d74002-aad5-41aa-8edd-0e8354fd8f1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013845Z:c2d74002-aad5-41aa-8edd-0e8354fd8f1b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:38:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ec8167d5-8e82-4951-8704-ab67bc3d12de"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec8167d5-8e82-4951-8704-ab67bc3d12de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T013946Z:ec8167d5-8e82-4951-8704-ab67bc3d12de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:39:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c576c676-6598-43e3-a64e-7ba3e8ec26e9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "c576c676-6598-43e3-a64e-7ba3e8ec26e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014046Z:c576c676-6598-43e3-a64e-7ba3e8ec26e9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:40:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "da8ff351-f364-4499-9cc9-7203b967c21a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "da8ff351-f364-4499-9cc9-7203b967c21a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014147Z:da8ff351-f364-4499-9cc9-7203b967c21a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:41:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f55fb6a-7645-4df5-8c0f-f378c6e91427"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f55fb6a-7645-4df5-8c0f-f378c6e91427"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014247Z:5f55fb6a-7645-4df5-8c0f-f378c6e91427"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:42:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1c522232-8b05-4454-9d6e-30620bab760d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c522232-8b05-4454-9d6e-30620bab760d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014347Z:1c522232-8b05-4454-9d6e-30620bab760d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:43:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "db742cbf-5ee7-49d8-97da-0fc5f858f9f9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "x-ms-correlation-request-id": [
+ "db742cbf-5ee7-49d8-97da-0fc5f858f9f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014448Z:db742cbf-5ee7-49d8-97da-0fc5f858f9f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:44:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b89ab82-ae92-4b52-83a0-59d83d2ff9c5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b89ab82-ae92-4b52-83a0-59d83d2ff9c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014548Z:9b89ab82-ae92-4b52-83a0-59d83d2ff9c5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:45:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72910b2a-0ef8-4cdb-b3c7-cf8dc146cf06"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "72910b2a-0ef8-4cdb-b3c7-cf8dc146cf06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014649Z:72910b2a-0ef8-4cdb-b3c7-cf8dc146cf06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:46:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d2c76867-f1e5-4db3-a58e-b173f9b08160"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2c76867-f1e5-4db3-a58e-b173f9b08160"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014749Z:d2c76867-f1e5-4db3-a58e-b173f9b08160"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:47:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "735abbba-206e-421f-82ae-ccbf8e279211"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-correlation-request-id": [
+ "735abbba-206e-421f-82ae-ccbf8e279211"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014850Z:735abbba-206e-421f-82ae-ccbf8e279211"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:48:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ee5fae0d-7d32-45d3-b930-b3e9aff2b2d6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee5fae0d-7d32-45d3-b930-b3e9aff2b2d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T014950Z:ee5fae0d-7d32-45d3-b930-b3e9aff2b2d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:49:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471/operationresults/ZWFzdHVzOnBzNDcxX1VwZGF0ZV9mZTA4YTljMg==?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQ3MS9vcGVyYXRpb25yZXN1bHRzL1pXRnpkSFZ6T25Cek5EY3hYMVZ3WkdGMFpWOW1aVEE0WVRsak1nPT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98ba1b1d-1012-405e-99cd-a953b1f56067"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "22299a19-c6ba-4420-bbf2-0f7b404ff1bd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "22299a19-c6ba-4420-bbf2-0f7b404ff1bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015050Z:22299a19-c6ba-4420-bbf2-0f7b404ff1bd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:50:50 GMT"
+ ],
+ "Content-Length": [
+ "3625"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7766/providers/Microsoft.ApiManagement/service/ps471\",\r\n \"name\": \"ps471\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABc/6I=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-04-29T00:26:14.569002Z\",\r\n \"gatewayUrl\": \"https://ps471.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps471-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps471.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps471.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps471.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps471.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps471.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.119.121.57\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.30.1.5\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"20.188.94.39\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"192.168.0.20\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/stv2subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://ps471-southcentralus-01.regional.azure-api.net\",\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvnetscuip\",\r\n \"platformVersion\": \"stv2\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/stv2subnet\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/publicIPAddresses/powershellvneteastusip2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-04-29T00:26:14.5190128Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-04-29T01:24:39.1031618Z\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps7766?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNzc2Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4863e27a-cb17-4c15-8dc5-9790adfbd428"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "673645c7-42e5-4ca3-a40f-2d60fd7f30d0"
+ ],
+ "x-ms-correlation-request-id": [
+ "673645c7-42e5-4ca3-a40f-2d60fd7f30d0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015054Z:673645c7-42e5-4ca3-a40f-2d60fd7f30d0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:50:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "c45f2353-7ec5-4c7b-b436-0b36a0bf8e1b"
+ ],
+ "x-ms-correlation-request-id": [
+ "c45f2353-7ec5-4c7b-b436-0b36a0bf8e1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015109Z:c45f2353-7ec5-4c7b-b436-0b36a0bf8e1b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:51:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "1e747caf-6afc-4da4-a552-3c514223fa2f"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e747caf-6afc-4da4-a552-3c514223fa2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015124Z:1e747caf-6afc-4da4-a552-3c514223fa2f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:51:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "8fd3076a-5a49-482b-b45c-8342767269e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "8fd3076a-5a49-482b-b45c-8342767269e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015139Z:8fd3076a-5a49-482b-b45c-8342767269e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:51:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "ceb7c513-db2c-4665-bff9-a33680f71d7c"
+ ],
+ "x-ms-correlation-request-id": [
+ "ceb7c513-db2c-4665-bff9-a33680f71d7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015154Z:ceb7c513-db2c-4665-bff9-a33680f71d7c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:51:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "324be10a-8154-424e-a118-489a88a85be0"
+ ],
+ "x-ms-correlation-request-id": [
+ "324be10a-8154-424e-a118-489a88a85be0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015210Z:324be10a-8154-424e-a118-489a88a85be0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:52:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "c6263885-4800-4353-a835-8a678c074923"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6263885-4800-4353-a835-8a678c074923"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015225Z:c6263885-4800-4353-a835-8a678c074923"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:52:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "a0b4afc0-c988-4386-ab57-ab2cffc2b1e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0b4afc0-c988-4386-ab57-ab2cffc2b1e7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015240Z:a0b4afc0-c988-4386-ab57-ab2cffc2b1e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:52:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "9c3ea3f4-c27c-44f1-9fa5-4521d3f0cf49"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c3ea3f4-c27c-44f1-9fa5-4521d3f0cf49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015255Z:9c3ea3f4-c27c-44f1-9fa5-4521d3f0cf49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:52:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "8df1e7b3-85c4-4e87-a8ff-e5d984cf8d21"
+ ],
+ "x-ms-correlation-request-id": [
+ "8df1e7b3-85c4-4e87-a8ff-e5d984cf8d21"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015310Z:8df1e7b3-85c4-4e87-a8ff-e5d984cf8d21"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:53:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "7e4fbb15-183e-455a-b81d-b5b6a57e86d1"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e4fbb15-183e-455a-b81d-b5b6a57e86d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015325Z:7e4fbb15-183e-455a-b81d-b5b6a57e86d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:53:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "391aca6e-fc82-4f2c-9b13-8ecaf1a8f047"
+ ],
+ "x-ms-correlation-request-id": [
+ "391aca6e-fc82-4f2c-9b13-8ecaf1a8f047"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015340Z:391aca6e-fc82-4f2c-9b13-8ecaf1a8f047"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:53:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "20975946-58cc-4bb9-82d1-3369f386ef57"
+ ],
+ "x-ms-correlation-request-id": [
+ "20975946-58cc-4bb9-82d1-3369f386ef57"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015356Z:20975946-58cc-4bb9-82d1-3369f386ef57"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:53:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "485ff8aa-4d33-4643-93a5-1e730ad7832d"
+ ],
+ "x-ms-correlation-request-id": [
+ "485ff8aa-4d33-4643-93a5-1e730ad7832d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015411Z:485ff8aa-4d33-4643-93a5-1e730ad7832d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:54:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "e226871b-373e-4152-9def-a0f20e5c5d6a"
+ ],
+ "x-ms-correlation-request-id": [
+ "e226871b-373e-4152-9def-a0f20e5c5d6a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015426Z:e226871b-373e-4152-9def-a0f20e5c5d6a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:54:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "20e4bb6c-70f8-4f1e-84ab-fa93bec4c588"
+ ],
+ "x-ms-correlation-request-id": [
+ "20e4bb6c-70f8-4f1e-84ab-fa93bec4c588"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015441Z:20e4bb6c-70f8-4f1e-84ab-fa93bec4c588"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:54:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "bc4a18c7-dec0-4b77-a970-36d1927aa8b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc4a18c7-dec0-4b77-a970-36d1927aa8b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015456Z:bc4a18c7-dec0-4b77-a970-36d1927aa8b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:54:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "d8f35fa2-7351-4cb3-801b-0e14ced8fae7"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8f35fa2-7351-4cb3-801b-0e14ced8fae7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015511Z:d8f35fa2-7351-4cb3-801b-0e14ced8fae7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:55:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "2b084b8e-8e90-4ab3-8d28-5bee7765a7a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b084b8e-8e90-4ab3-8d28-5bee7765a7a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015526Z:2b084b8e-8e90-4ab3-8d28-5bee7765a7a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:55:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-request-id": [
+ "5ee01aca-125e-4a7d-805f-803fa45c2137"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ee01aca-125e-4a7d-805f-803fa45c2137"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015542Z:5ee01aca-125e-4a7d-805f-803fa45c2137"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:55:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-request-id": [
+ "c64b8020-510b-426c-8816-543c8fd35db0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c64b8020-510b-426c-8816-543c8fd35db0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015557Z:c64b8020-510b-426c-8816-543c8fd35db0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:55:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-request-id": [
+ "52064222-c75a-43fb-a2f3-aec28be5f187"
+ ],
+ "x-ms-correlation-request-id": [
+ "52064222-c75a-43fb-a2f3-aec28be5f187"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015612Z:52064222-c75a-43fb-a2f3-aec28be5f187"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:56:12 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-request-id": [
+ "b188ca15-dac8-4301-b507-ab6848ce3938"
+ ],
+ "x-ms-correlation-request-id": [
+ "b188ca15-dac8-4301-b507-ab6848ce3938"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015627Z:b188ca15-dac8-4301-b507-ab6848ce3938"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:56:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-request-id": [
+ "8cf9089e-a05a-43fb-8654-557375cf0221"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cf9089e-a05a-43fb-8654-557375cf0221"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015642Z:8cf9089e-a05a-43fb-8654-557375cf0221"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:56:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-request-id": [
+ "2aebcb3a-e435-463c-9852-200cca82aede"
+ ],
+ "x-ms-correlation-request-id": [
+ "2aebcb3a-e435-463c-9852-200cca82aede"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015657Z:2aebcb3a-e435-463c-9852-200cca82aede"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:56:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-request-id": [
+ "01c6702f-ec9c-4226-8f86-21e453eefb7f"
+ ],
+ "x-ms-correlation-request-id": [
+ "01c6702f-ec9c-4226-8f86-21e453eefb7f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015712Z:01c6702f-ec9c-4226-8f86-21e453eefb7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:57:12 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-request-id": [
+ "6d47b77e-9805-4a27-b5ef-8287684fcd1a"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d47b77e-9805-4a27-b5ef-8287684fcd1a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015728Z:6d47b77e-9805-4a27-b5ef-8287684fcd1a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:57:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-request-id": [
+ "10c5ada5-1c20-4400-b295-5719d594342e"
+ ],
+ "x-ms-correlation-request-id": [
+ "10c5ada5-1c20-4400-b295-5719d594342e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015743Z:10c5ada5-1c20-4400-b295-5719d594342e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:57:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-request-id": [
+ "c0cbba27-4e41-4f41-8968-bd31b1b9cd8c"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0cbba27-4e41-4f41-8968-bd31b1b9cd8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015758Z:c0cbba27-4e41-4f41-8968-bd31b1b9cd8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:57:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-request-id": [
+ "c792b197-dfcc-45e5-a69e-b1de0b53e472"
+ ],
+ "x-ms-correlation-request-id": [
+ "c792b197-dfcc-45e5-a69e-b1de0b53e472"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015813Z:c792b197-dfcc-45e5-a69e-b1de0b53e472"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:58:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-request-id": [
+ "f803b153-521c-4629-93c0-c1cf3789c39b"
+ ],
+ "x-ms-correlation-request-id": [
+ "f803b153-521c-4629-93c0-c1cf3789c39b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015828Z:f803b153-521c-4629-93c0-c1cf3789c39b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:58:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-request-id": [
+ "04c3b9d2-1e8d-4179-bdd9-11665bc633bc"
+ ],
+ "x-ms-correlation-request-id": [
+ "04c3b9d2-1e8d-4179-bdd9-11665bc633bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015843Z:04c3b9d2-1e8d-4179-bdd9-11665bc633bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:58:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-request-id": [
+ "eba4eda7-9f31-4fbc-8763-dc83e9810fc7"
+ ],
+ "x-ms-correlation-request-id": [
+ "eba4eda7-9f31-4fbc-8763-dc83e9810fc7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015858Z:eba4eda7-9f31-4fbc-8763-dc83e9810fc7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:58:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3NjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM05qWXRSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.16002",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-request-id": [
+ "1431f53e-a5cf-4398-893c-d602ed515ac9"
+ ],
+ "x-ms-correlation-request-id": [
+ "1431f53e-a5cf-4398-893c-d602ed515ac9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220429T015859Z:1431f53e-a5cf-4398-893c-d602ed515ac9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 29 Apr 2022 01:58:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-ApiManagementVirtualNetworkStv2CRUD": [
+ "ps7766",
+ "ps471"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e"
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json
index 794852d1aecf..f77e51e5652a 100644
--- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json
+++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithAdditionalRegions.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4150?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDE1MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8862?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODg2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "decd20c8-e9cf-4bca-9e41-3ddc9ed0e946"
+ "c35a88a1-cdd8-44e4-a259-7cfcbbb44c1b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "994708cd-e2dc-4c60-a3b3-764d9bf3b5bb"
+ "b15f64eb-b76c-45b3-8476-3631cd6a2c6d"
],
"x-ms-correlation-request-id": [
- "994708cd-e2dc-4c60-a3b3-764d9bf3b5bb"
+ "b15f64eb-b76c-45b3-8476-3631cd6a2c6d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T201000Z:994708cd-e2dc-4c60-a3b3-764d9bf3b5bb"
+ "WESTUS:20220322T074146Z:b15f64eb-b76c-45b3-8476-3631cd6a2c6d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:09:59 GMT"
+ "Tue, 22 Mar 2022 07:41:46 GMT"
],
"Content-Length": [
"166"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150\",\r\n \"name\": \"ps4150\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862\",\r\n \"name\": \"ps8862\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"disableGateway\": true\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"disableGateway\": true\r\n }\r\n ],\r\n \"disableGateway\": false,\r\n \"virtualNetworkType\": \"None\",\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {}\r\n }\r\n },\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,10 +99,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAT7+A=\""
+ "\"AAAAAAAgfzc=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -111,8 +111,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9b0dd363-7f07-40a6-8dd5-670a7dcaa295",
- "dcf9394a-8e9a-4973-af47-101aed55d04e"
+ "a1a79f32-6c89-4f07-8c4c-b54b1ded2a58",
+ "a1a79f32-6c89-4f07-8c4c-b54b1ded2a58"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "7c74fe42-0c9c-4cf5-abee-c51594d30bae"
+ "a1a79f32-6c89-4f07-8c4c-b54b1ded2a58"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201004Z:7c74fe42-0c9c-4cf5-abee-c51594d30bae"
+ "WESTUS:20220322T074149Z:a1a79f32-6c89-4f07-8c4c-b54b1ded2a58"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:10:03 GMT"
+ "Tue, 22 Mar 2022 07:41:49 GMT"
],
"Content-Length": [
- "1971"
+ "2540"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,32 +142,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984\",\r\n \"name\": \"ps2984\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAT7+A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2021-07-16T20:10:02.5133572Z\",\r\n \"gatewayUrl\": \"https://ps2984.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2984.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"disableGateway\": true\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"disableGateway\": true\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397\",\r\n \"name\": \"ps397\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgfzc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2022-03-22T07:41:48.3250751Z\",\r\n \"gatewayUrl\": \"https://ps397.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps397.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"undetermined\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": null,\r\n \"clientId\": null\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T07:41:47.8779601Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T07:41:47.8779601Z\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2984.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"disableGateway\": false\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"disableGateway\": false,\r\n \"virtualNetworkType\": \"None\",\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {}\r\n }\r\n },\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps397.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false,\r\n \"certificateSource\": \"BuiltIn\"\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"disableGateway\": false\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"disableGateway\": false,\r\n \"virtualNetworkType\": \"None\",\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {}\r\n }\r\n },\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2008"
+ "2087"
]
},
"ResponseHeaders": {
@@ -178,10 +178,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAT8Bg=\""
+ "\"AAAAAAAgf4g=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -190,8 +190,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c4e53d48-6c66-4206-954f-11fedaf17978",
- "5be089f7-3b9d-4f46-bb5a-1e0adaa55c0f"
+ "b35aca89-3f18-49f9-b321-898ca5858638",
+ "b35aca89-3f18-49f9-b321-898ca5858638"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -200,19 +200,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "222e0579-5da3-4160-8d22-b867d9fcd188"
+ "b35aca89-3f18-49f9-b321-898ca5858638"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204219Z:222e0579-5da3-4160-8d22-b867d9fcd188"
+ "WESTUS:20220322T081900Z:b35aca89-3f18-49f9-b321-898ca5858638"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:42:18 GMT"
+ "Tue, 22 Mar 2022 08:19:00 GMT"
],
"Content-Length": [
- "3055"
+ "3593"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -221,23 +221,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984\",\r\n \"name\": \"ps2984\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAT8Bg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2021-07-16T20:10:02.5133572Z\",\r\n \"gatewayUrl\": \"https://ps2984.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2984-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2984.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2984.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2984.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2984.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2984.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.80.152.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.226.201.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2984-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.249.60.229\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2984-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397\",\r\n \"name\": \"ps397\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgf4g=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2022-03-22T07:41:48.3250751Z\",\r\n \"gatewayUrl\": \"https://ps397.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps397-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps397.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps397.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps397.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps397.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps397.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.201.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.120.51.243\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps397-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.116.31\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps397-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv2\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T07:41:47.8779601Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T07:41:47.8779601Z\"\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -248,7 +248,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -257,7 +257,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84afb1a0-0de4-4699-bee7-07ca200de16c"
+ "b7c8667d-2d38-4658-b194-f9b6bd1312dc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -266,16 +266,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "3ec6c7be-46ca-481a-bcd5-cb3802b27907"
+ "b7c8667d-2d38-4658-b194-f9b6bd1312dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201104Z:3ec6c7be-46ca-481a-bcd5-cb3802b27907"
+ "WESTUS:20220322T074250Z:b7c8667d-2d38-4658-b194-f9b6bd1312dc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:11:03 GMT"
+ "Tue, 22 Mar 2022 07:42:49 GMT"
],
"Expires": [
"-1"
@@ -288,19 +288,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -311,7 +311,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -320,7 +320,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6a1ef23d-6632-49be-9bf4-d909386f9e69"
+ "54d8193a-053a-470d-bfab-16649796a4a7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -329,16 +329,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "7354f012-9b7e-4015-b962-7ad2e5268526"
+ "54d8193a-053a-470d-bfab-16649796a4a7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201205Z:7354f012-9b7e-4015-b962-7ad2e5268526"
+ "WESTUS:20220322T074350Z:54d8193a-053a-470d-bfab-16649796a4a7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:12:04 GMT"
+ "Tue, 22 Mar 2022 07:43:50 GMT"
],
"Expires": [
"-1"
@@ -351,19 +351,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -374,7 +374,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -383,7 +383,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98183d23-92ec-4de9-9b15-e30ffb4c61c6"
+ "2af20038-9469-4359-98da-cfb46115fbd9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "ffc55e47-fb46-43f4-99c7-c95329fc6ad8"
+ "2af20038-9469-4359-98da-cfb46115fbd9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201305Z:ffc55e47-fb46-43f4-99c7-c95329fc6ad8"
+ "WESTUS:20220322T074450Z:2af20038-9469-4359-98da-cfb46115fbd9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:13:04 GMT"
+ "Tue, 22 Mar 2022 07:44:50 GMT"
],
"Expires": [
"-1"
@@ -414,19 +414,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -437,7 +437,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -446,7 +446,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e1360baf-6f32-4465-a5f1-56817f6b2c74"
+ "730d0122-2765-4ee4-8d30-1eeb8e0f668f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -455,16 +455,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "a8e81a08-87c6-4256-8e5f-5902c2d37844"
+ "730d0122-2765-4ee4-8d30-1eeb8e0f668f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201405Z:a8e81a08-87c6-4256-8e5f-5902c2d37844"
+ "WESTUS:20220322T074551Z:730d0122-2765-4ee4-8d30-1eeb8e0f668f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:14:05 GMT"
+ "Tue, 22 Mar 2022 07:45:50 GMT"
],
"Expires": [
"-1"
@@ -477,19 +477,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -500,7 +500,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -509,7 +509,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9448e0eb-3326-4631-8fdd-b118d29fcf99"
+ "3ed18118-6586-444e-8993-967af0ec6c9b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -518,16 +518,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "e5a83f4f-4c34-4065-ba58-79a82e472185"
+ "3ed18118-6586-444e-8993-967af0ec6c9b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201505Z:e5a83f4f-4c34-4065-ba58-79a82e472185"
+ "WESTUS:20220322T074651Z:3ed18118-6586-444e-8993-967af0ec6c9b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:15:04 GMT"
+ "Tue, 22 Mar 2022 07:46:50 GMT"
],
"Expires": [
"-1"
@@ -540,19 +540,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -563,7 +563,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -572,7 +572,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8e648c5f-2913-49c4-b324-de1ee558edb3"
+ "7650dd88-d9b8-4106-9007-f8165ed14838"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -581,16 +581,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "c9166f7b-40a0-477b-bc1c-4897075efc3d"
+ "7650dd88-d9b8-4106-9007-f8165ed14838"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201605Z:c9166f7b-40a0-477b-bc1c-4897075efc3d"
+ "WESTUS:20220322T074751Z:7650dd88-d9b8-4106-9007-f8165ed14838"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:16:05 GMT"
+ "Tue, 22 Mar 2022 07:47:51 GMT"
],
"Expires": [
"-1"
@@ -603,19 +603,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -626,7 +626,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -635,7 +635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2093ef58-2176-41a3-b18f-3787af666fb9"
+ "2ddaf341-d71b-4306-9f2e-630ec6cf99e6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -644,16 +644,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "98d2be06-a32c-46f7-99ea-2f04d0044106"
+ "2ddaf341-d71b-4306-9f2e-630ec6cf99e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201706Z:98d2be06-a32c-46f7-99ea-2f04d0044106"
+ "WESTUS:20220322T074851Z:2ddaf341-d71b-4306-9f2e-630ec6cf99e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:17:05 GMT"
+ "Tue, 22 Mar 2022 07:48:51 GMT"
],
"Expires": [
"-1"
@@ -666,19 +666,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -689,7 +689,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -698,7 +698,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "16682e59-65fa-4019-b790-062e4639198d"
+ "674cee9c-3126-48d0-885a-d90b79aec9af"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -707,16 +707,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "d0b4eaac-6d75-4945-b5ac-2716e04d5339"
+ "674cee9c-3126-48d0-885a-d90b79aec9af"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201806Z:d0b4eaac-6d75-4945-b5ac-2716e04d5339"
+ "WESTUS:20220322T074952Z:674cee9c-3126-48d0-885a-d90b79aec9af"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:18:05 GMT"
+ "Tue, 22 Mar 2022 07:49:51 GMT"
],
"Expires": [
"-1"
@@ -729,19 +729,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -752,7 +752,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -761,7 +761,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f34bfa0-0c42-40fc-aefb-dc158d4ca549"
+ "f22602ff-1952-495c-a2e5-e82b781c8c36"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -770,16 +770,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "070e3cd8-4846-4979-9c13-76ba325e4b45"
+ "f22602ff-1952-495c-a2e5-e82b781c8c36"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T201906Z:070e3cd8-4846-4979-9c13-76ba325e4b45"
+ "WESTUS:20220322T075052Z:f22602ff-1952-495c-a2e5-e82b781c8c36"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:19:05 GMT"
+ "Tue, 22 Mar 2022 07:50:51 GMT"
],
"Expires": [
"-1"
@@ -792,19 +792,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -815,7 +815,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -824,7 +824,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fdb406ff-3dd6-4ab2-afd5-a1a8edbdc674"
+ "563fe6e8-a97d-4d09-858f-7f0e9428bf00"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -833,16 +833,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "bd225edd-93de-45f9-b3c7-c15d0761eb5c"
+ "563fe6e8-a97d-4d09-858f-7f0e9428bf00"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202006Z:bd225edd-93de-45f9-b3c7-c15d0761eb5c"
+ "WESTUS:20220322T075152Z:563fe6e8-a97d-4d09-858f-7f0e9428bf00"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:20:06 GMT"
+ "Tue, 22 Mar 2022 07:51:52 GMT"
],
"Expires": [
"-1"
@@ -855,19 +855,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -878,7 +878,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -887,7 +887,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9f738d6-b9dd-4b13-ac96-b8a233a119ff"
+ "b27d5fa4-c881-4dcc-9ce4-0729efaca477"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -896,16 +896,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "4c95f857-df9d-47a2-a7f0-606f4c773924"
+ "b27d5fa4-c881-4dcc-9ce4-0729efaca477"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202106Z:4c95f857-df9d-47a2-a7f0-606f4c773924"
+ "WESTUS:20220322T075252Z:b27d5fa4-c881-4dcc-9ce4-0729efaca477"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:21:06 GMT"
+ "Tue, 22 Mar 2022 07:52:52 GMT"
],
"Expires": [
"-1"
@@ -918,19 +918,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -941,7 +941,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -950,7 +950,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c1919c60-8cd5-40fc-8dc3-503bb3ca242f"
+ "4b0318d2-494a-4a08-a537-006ad05b5eb9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -959,16 +959,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "ae68ba19-3d36-443f-b1a1-3526f077b02a"
+ "4b0318d2-494a-4a08-a537-006ad05b5eb9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202207Z:ae68ba19-3d36-443f-b1a1-3526f077b02a"
+ "WESTUS:20220322T075352Z:4b0318d2-494a-4a08-a537-006ad05b5eb9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:22:06 GMT"
+ "Tue, 22 Mar 2022 07:53:51 GMT"
],
"Expires": [
"-1"
@@ -981,19 +981,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1004,7 +1004,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1013,7 +1013,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "14d44235-333b-4ac5-9724-30c7a6a3be65"
+ "927f1e6e-e734-4cb4-b4c0-fe9a6a5a5126"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1022,16 +1022,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "af8a586e-67a8-449b-bdb7-cfd12e587bdf"
+ "927f1e6e-e734-4cb4-b4c0-fe9a6a5a5126"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202307Z:af8a586e-67a8-449b-bdb7-cfd12e587bdf"
+ "WESTUS:20220322T075453Z:927f1e6e-e734-4cb4-b4c0-fe9a6a5a5126"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:23:06 GMT"
+ "Tue, 22 Mar 2022 07:54:52 GMT"
],
"Expires": [
"-1"
@@ -1044,19 +1044,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1067,7 +1067,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1076,7 +1076,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6e32e2ba-019f-47ab-aeab-ee09aa7f751d"
+ "313b472f-3353-4969-973d-d866a49f93ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1085,16 +1085,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "2e843d70-5af1-49cd-9466-9b20bf67d4d9"
+ "313b472f-3353-4969-973d-d866a49f93ee"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202407Z:2e843d70-5af1-49cd-9466-9b20bf67d4d9"
+ "WESTUS:20220322T075553Z:313b472f-3353-4969-973d-d866a49f93ee"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:24:07 GMT"
+ "Tue, 22 Mar 2022 07:55:52 GMT"
],
"Expires": [
"-1"
@@ -1107,19 +1107,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1130,7 +1130,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1139,7 +1139,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ae3acca6-6a74-4c0a-88d2-f71a27c94d07"
+ "6fd332ad-ef23-4390-b55c-669608a2e2ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1148,16 +1148,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "a22f1a72-8978-4f49-8eb9-5a9e5eede357"
+ "6fd332ad-ef23-4390-b55c-669608a2e2ab"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202507Z:a22f1a72-8978-4f49-8eb9-5a9e5eede357"
+ "WESTUS:20220322T075653Z:6fd332ad-ef23-4390-b55c-669608a2e2ab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:25:07 GMT"
+ "Tue, 22 Mar 2022 07:56:52 GMT"
],
"Expires": [
"-1"
@@ -1170,19 +1170,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1193,7 +1193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1202,7 +1202,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a3a00af-958d-4dc1-b4ee-765adeadad42"
+ "6f2792ba-fa53-4a1f-9bb1-95561f9d3f85"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1211,16 +1211,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "a1aabc82-6dc7-46a4-9700-d88ff35625da"
+ "6f2792ba-fa53-4a1f-9bb1-95561f9d3f85"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202607Z:a1aabc82-6dc7-46a4-9700-d88ff35625da"
+ "WESTUS:20220322T075753Z:6f2792ba-fa53-4a1f-9bb1-95561f9d3f85"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:26:07 GMT"
+ "Tue, 22 Mar 2022 07:57:53 GMT"
],
"Expires": [
"-1"
@@ -1233,19 +1233,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1256,7 +1256,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1265,7 +1265,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6215c099-ee9c-478a-a170-1067f95250eb"
+ "c152ab99-2523-4a98-a78d-c3bf513e84f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1274,16 +1274,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "72f1d441-b0f1-4ef3-ac0f-0daeaade9e39"
+ "c152ab99-2523-4a98-a78d-c3bf513e84f7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202708Z:72f1d441-b0f1-4ef3-ac0f-0daeaade9e39"
+ "WESTUS:20220322T075853Z:c152ab99-2523-4a98-a78d-c3bf513e84f7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:27:07 GMT"
+ "Tue, 22 Mar 2022 07:58:53 GMT"
],
"Expires": [
"-1"
@@ -1296,19 +1296,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1319,7 +1319,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1328,7 +1328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "699187c2-8a48-4463-9067-3ee488b3a3db"
+ "cb14e643-a846-483a-bf72-c7bfcec3b565"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1337,16 +1337,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "960de231-2822-4737-9a03-2b391fc37adb"
+ "cb14e643-a846-483a-bf72-c7bfcec3b565"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202808Z:960de231-2822-4737-9a03-2b391fc37adb"
+ "WESTUS:20220322T075954Z:cb14e643-a846-483a-bf72-c7bfcec3b565"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:28:08 GMT"
+ "Tue, 22 Mar 2022 07:59:53 GMT"
],
"Expires": [
"-1"
@@ -1359,19 +1359,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1382,7 +1382,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1391,7 +1391,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bbdff661-e6aa-4331-a7c0-179a291fdc1d"
+ "f97e136d-1ca1-4014-bdf2-e1a0ba8b8132"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1400,16 +1400,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "0122b271-4c7c-45cd-956c-67cf357d4192"
+ "f97e136d-1ca1-4014-bdf2-e1a0ba8b8132"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T202908Z:0122b271-4c7c-45cd-956c-67cf357d4192"
+ "WESTUS:20220322T080054Z:f97e136d-1ca1-4014-bdf2-e1a0ba8b8132"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:29:08 GMT"
+ "Tue, 22 Mar 2022 08:00:54 GMT"
],
"Expires": [
"-1"
@@ -1422,19 +1422,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1445,7 +1445,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1454,7 +1454,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "046e5c86-8af2-4e46-a9d6-9503bd9cf64a"
+ "1f56bafc-8da6-4f5b-bf62-d10e9f034e7c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1463,16 +1463,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "975690ec-ad1a-41ca-b40a-7922a0fcb46e"
+ "1f56bafc-8da6-4f5b-bf62-d10e9f034e7c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203008Z:975690ec-ad1a-41ca-b40a-7922a0fcb46e"
+ "WESTUS:20220322T080154Z:1f56bafc-8da6-4f5b-bf62-d10e9f034e7c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:30:08 GMT"
+ "Tue, 22 Mar 2022 08:01:54 GMT"
],
"Expires": [
"-1"
@@ -1485,19 +1485,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1508,7 +1508,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1517,7 +1517,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "47e2be56-78cc-4ce2-ad1f-5e1014e38e87"
+ "6c8becab-7677-422a-adef-f55a1cafc44a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1526,16 +1526,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "b5bb0e43-cd1b-42fb-bc5b-37cb1e4b56c9"
+ "6c8becab-7677-422a-adef-f55a1cafc44a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203108Z:b5bb0e43-cd1b-42fb-bc5b-37cb1e4b56c9"
+ "WESTUS:20220322T080254Z:6c8becab-7677-422a-adef-f55a1cafc44a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:31:08 GMT"
+ "Tue, 22 Mar 2022 08:02:54 GMT"
],
"Expires": [
"-1"
@@ -1548,19 +1548,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1571,7 +1571,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1580,7 +1580,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c1f801c5-0559-4bc0-a85b-ef333b703aa2"
+ "73632593-27ed-4ccb-8f72-740be392630b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1589,16 +1589,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "ca5e9c24-515e-4d94-8079-40da79ecee3f"
+ "73632593-27ed-4ccb-8f72-740be392630b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203209Z:ca5e9c24-515e-4d94-8079-40da79ecee3f"
+ "WESTUS:20220322T080355Z:73632593-27ed-4ccb-8f72-740be392630b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:32:08 GMT"
+ "Tue, 22 Mar 2022 08:03:54 GMT"
],
"Expires": [
"-1"
@@ -1611,19 +1611,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1634,7 +1634,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1643,7 +1643,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3997a90c-9309-4aa3-bce6-6c12942acf9f"
+ "b6f2a26d-627f-467a-9236-bedff2ae8bd1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1652,16 +1652,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "f4d172b4-bc4b-4994-88d0-c01dd5ce499a"
+ "b6f2a26d-627f-467a-9236-bedff2ae8bd1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203309Z:f4d172b4-bc4b-4994-88d0-c01dd5ce499a"
+ "WESTUS:20220322T080455Z:b6f2a26d-627f-467a-9236-bedff2ae8bd1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:33:09 GMT"
+ "Tue, 22 Mar 2022 08:04:54 GMT"
],
"Expires": [
"-1"
@@ -1674,19 +1674,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1697,7 +1697,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1706,7 +1706,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2ec6c89c-85dc-43f9-b124-51cbe3b036d4"
+ "c9fcd36b-173a-4bb1-adcf-e6cd6ea7aa66"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1715,16 +1715,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "8c2c5b0d-68b1-438a-914c-1fccafaf838f"
+ "c9fcd36b-173a-4bb1-adcf-e6cd6ea7aa66"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203409Z:8c2c5b0d-68b1-438a-914c-1fccafaf838f"
+ "WESTUS:20220322T080555Z:c9fcd36b-173a-4bb1-adcf-e6cd6ea7aa66"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:34:08 GMT"
+ "Tue, 22 Mar 2022 08:05:55 GMT"
],
"Expires": [
"-1"
@@ -1737,19 +1737,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1760,7 +1760,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1769,7 +1769,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73ddd53c-d050-4a65-8052-ae577872bd5f"
+ "b0bbd0a0-d4c5-4a7c-94d0-7ab6ee9ab2c8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1778,16 +1778,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "54a191c2-cf88-430b-bfdd-d07d21d4b970"
+ "b0bbd0a0-d4c5-4a7c-94d0-7ab6ee9ab2c8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203509Z:54a191c2-cf88-430b-bfdd-d07d21d4b970"
+ "WESTUS:20220322T080655Z:b0bbd0a0-d4c5-4a7c-94d0-7ab6ee9ab2c8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:35:09 GMT"
+ "Tue, 22 Mar 2022 08:06:55 GMT"
],
"Expires": [
"-1"
@@ -1800,19 +1800,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1823,7 +1823,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1832,7 +1832,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bc6a1917-a623-4dc3-9668-767df41e139f"
+ "fb80ccaf-3580-4e2b-a1c2-afb6b7e036b9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1841,16 +1841,16 @@
"11974"
],
"x-ms-correlation-request-id": [
- "dfb24b37-4e83-4f31-a26e-1c4aca5dd533"
+ "fb80ccaf-3580-4e2b-a1c2-afb6b7e036b9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203609Z:dfb24b37-4e83-4f31-a26e-1c4aca5dd533"
+ "WESTUS:20220322T080755Z:fb80ccaf-3580-4e2b-a1c2-afb6b7e036b9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:36:09 GMT"
+ "Tue, 22 Mar 2022 08:07:55 GMT"
],
"Expires": [
"-1"
@@ -1863,19 +1863,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1886,7 +1886,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1895,7 +1895,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c2ddfe6e-d7dd-470e-86ce-00201e22ac0b"
+ "1e385f08-04b5-43ed-982f-5ff5848d0814"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1904,16 +1904,16 @@
"11973"
],
"x-ms-correlation-request-id": [
- "31b39dc8-9e1d-4ed5-b1b4-7c233365917d"
+ "1e385f08-04b5-43ed-982f-5ff5848d0814"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203710Z:31b39dc8-9e1d-4ed5-b1b4-7c233365917d"
+ "WESTUS:20220322T080856Z:1e385f08-04b5-43ed-982f-5ff5848d0814"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:37:09 GMT"
+ "Tue, 22 Mar 2022 08:08:55 GMT"
],
"Expires": [
"-1"
@@ -1926,19 +1926,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1949,7 +1949,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1958,7 +1958,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d07338d6-7326-4afa-95e5-6f62e2aca4a3"
+ "3664fa05-3eac-4f15-b225-ea54c139572d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1967,16 +1967,16 @@
"11972"
],
"x-ms-correlation-request-id": [
- "6f912989-4bf4-40eb-b878-4e6e288ba394"
+ "3664fa05-3eac-4f15-b225-ea54c139572d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203810Z:6f912989-4bf4-40eb-b878-4e6e288ba394"
+ "WESTUS:20220322T080956Z:3664fa05-3eac-4f15-b225-ea54c139572d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:38:09 GMT"
+ "Tue, 22 Mar 2022 08:09:55 GMT"
],
"Expires": [
"-1"
@@ -1989,19 +1989,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2012,7 +2012,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2021,7 +2021,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df4c1506-6b4e-4b13-9822-f19559dd47c6"
+ "b13cc25a-40b2-41c0-8bd8-2c7e7269b9ce"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2030,16 +2030,16 @@
"11971"
],
"x-ms-correlation-request-id": [
- "739881d0-71fe-42c0-b09a-4c2f89a0db06"
+ "b13cc25a-40b2-41c0-8bd8-2c7e7269b9ce"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T203910Z:739881d0-71fe-42c0-b09a-4c2f89a0db06"
+ "WESTUS:20220322T081056Z:b13cc25a-40b2-41c0-8bd8-2c7e7269b9ce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:39:10 GMT"
+ "Tue, 22 Mar 2022 08:10:55 GMT"
],
"Expires": [
"-1"
@@ -2052,19 +2052,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2075,7 +2075,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2084,7 +2084,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4ad6824d-97eb-402e-873e-b2f21d7383da"
+ "630af425-89dd-4905-a91c-fc97940916af"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2093,16 +2093,16 @@
"11970"
],
"x-ms-correlation-request-id": [
- "b6c77ecf-910a-4f4a-9a41-2165d3fdfd55"
+ "630af425-89dd-4905-a91c-fc97940916af"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204010Z:b6c77ecf-910a-4f4a-9a41-2165d3fdfd55"
+ "WESTUS:20220322T081156Z:630af425-89dd-4905-a91c-fc97940916af"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:40:10 GMT"
+ "Tue, 22 Mar 2022 08:11:55 GMT"
],
"Expires": [
"-1"
@@ -2115,19 +2115,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2138,7 +2138,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2147,7 +2147,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8d5c6178-68c8-4a81-b8e3-a31ddd903552"
+ "329ccddd-c88f-4915-bd98-2bcf522830c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2156,16 +2156,16 @@
"11969"
],
"x-ms-correlation-request-id": [
- "f5bafde7-2c02-4817-b7fc-0cde890d65ba"
+ "329ccddd-c88f-4915-bd98-2bcf522830c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204111Z:f5bafde7-2c02-4817-b7fc-0cde890d65ba"
+ "WESTUS:20220322T081256Z:329ccddd-c88f-4915-bd98-2bcf522830c0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:41:10 GMT"
+ "Tue, 22 Mar 2022 08:12:56 GMT"
],
"Expires": [
"-1"
@@ -2178,19 +2178,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2200,11 +2200,17 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4c573f8d-2953-4020-b734-53976729be4b"
+ "9040e700-b16e-4be8-8d82-ecef4a676b8a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2213,47 +2219,41 @@
"11968"
],
"x-ms-correlation-request-id": [
- "bdbafb5d-44e2-46a6-8288-8cc90cc2d018"
+ "9040e700-b16e-4be8-8d82-ecef4a676b8a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204211Z:bdbafb5d-44e2-46a6-8288-8cc90cc2d018"
+ "WESTUS:20220322T081357Z:9040e700-b16e-4be8-8d82-ecef4a676b8a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:42:10 GMT"
- ],
- "Content-Length": [
- "3047"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Tue, 22 Mar 2022 08:13:56 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984\",\r\n \"name\": \"ps2984\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAT8BQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-16T20:10:02.5133572Z\",\r\n \"gatewayUrl\": \"https://ps2984.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2984-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2984.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2984.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2984.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2984.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2984.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.80.152.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.226.201.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2984-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.249.60.229\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2984-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bda12df7-784c-47dd-b04c-2ba653d99ff2"
- ],
- "Accept-Language": [
- "en-US"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2263,14 +2263,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAT8BQ=\""
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "34530762-3406-4bed-8444-00603d353c6e"
+ "c336dde4-e9ae-40ce-8a9c-af50c2b6f47a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2279,44 +2282,41 @@
"11967"
],
"x-ms-correlation-request-id": [
- "14736f57-93f7-4cae-99f1-ba9cdfc4a7e7"
+ "c336dde4-e9ae-40ce-8a9c-af50c2b6f47a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204211Z:14736f57-93f7-4cae-99f1-ba9cdfc4a7e7"
+ "WESTUS:20220322T081457Z:c336dde4-e9ae-40ce-8a9c-af50c2b6f47a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:42:10 GMT"
- ],
- "Content-Length": [
- "3047"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Tue, 22 Mar 2022 08:14:56 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984\",\r\n \"name\": \"ps2984\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAT8BQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-16T20:10:02.5133572Z\",\r\n \"gatewayUrl\": \"https://ps2984.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2984-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2984.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2984.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2984.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2984.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2984.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.80.152.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.226.201.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2984-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.249.60.229\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2984-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": true\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2327,7 +2327,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2336,7 +2336,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ac672d7d-4d81-408a-8f12-03e2a5e5821f"
+ "8ad45f2f-cd08-4101-a3f1-1b2ccddac073"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2345,16 +2345,16 @@
"11966"
],
"x-ms-correlation-request-id": [
- "46f593fe-24d3-460b-8b9a-3dcc8e693c11"
+ "8ad45f2f-cd08-4101-a3f1-1b2ccddac073"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204319Z:46f593fe-24d3-460b-8b9a-3dcc8e693c11"
+ "WESTUS:20220322T081557Z:8ad45f2f-cd08-4101-a3f1-1b2ccddac073"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:43:18 GMT"
+ "Tue, 22 Mar 2022 08:15:56 GMT"
],
"Expires": [
"-1"
@@ -2367,19 +2367,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2390,7 +2390,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2399,7 +2399,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ac1dc98e-0863-4a37-8dff-33cddf1072ed"
+ "b094ca7c-2bfd-4e12-ac05-823ddc25e6b5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2408,16 +2408,16 @@
"11965"
],
"x-ms-correlation-request-id": [
- "1e5308c3-729f-494f-a334-f69c223e624b"
+ "b094ca7c-2bfd-4e12-ac05-823ddc25e6b5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204419Z:1e5308c3-729f-494f-a334-f69c223e624b"
+ "WESTUS:20220322T081657Z:b094ca7c-2bfd-4e12-ac05-823ddc25e6b5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:44:19 GMT"
+ "Tue, 22 Mar 2022 08:16:56 GMT"
],
"Expires": [
"-1"
@@ -2430,19 +2430,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2453,7 +2453,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2462,7 +2462,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cd261945-39f9-4353-91ac-b8836cd7d31f"
+ "ed02cb62-18b8-4f55-a1d6-9972e919d97d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2471,16 +2471,16 @@
"11964"
],
"x-ms-correlation-request-id": [
- "b92c9a2a-cfd9-4cc9-86f9-e1422896f7a3"
+ "ed02cb62-18b8-4f55-a1d6-9972e919d97d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204519Z:b92c9a2a-cfd9-4cc9-86f9-e1422896f7a3"
+ "WESTUS:20220322T081757Z:ed02cb62-18b8-4f55-a1d6-9972e919d97d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:45:19 GMT"
+ "Tue, 22 Mar 2022 08:17:57 GMT"
],
"Expires": [
"-1"
@@ -2493,19 +2493,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19BY3RfYTI2MzA0NGQ=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlCWTNSZllUSTJNekEwTkdRPT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e4aae51d-bd9f-49dd-8ac2-b7ef0262d360"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2515,17 +2515,11 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea2f9fa4-0c0f-4ecd-949e-08db25c5ce21"
+ "b79490b7-4ab7-456f-9a39-443ee048a770"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2534,41 +2528,47 @@
"11963"
],
"x-ms-correlation-request-id": [
- "f095715b-681e-4161-921d-198885e5d571"
+ "b79490b7-4ab7-456f-9a39-443ee048a770"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204619Z:f095715b-681e-4161-921d-198885e5d571"
+ "WESTUS:20220322T081858Z:b79490b7-4ab7-456f-9a39-443ee048a770"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:46:19 GMT"
+ "Tue, 22 Mar 2022 08:18:57 GMT"
+ ],
+ "Content-Length": [
+ "3585"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397\",\r\n \"name\": \"ps397\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgf4c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T07:41:48.3250751Z\",\r\n \"gatewayUrl\": \"https://ps397.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps397-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps397.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps397.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps397.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps397.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps397.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.201.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.120.51.243\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps397-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.116.31\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps397-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv2\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T07:41:47.8779601Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T07:41:47.8779601Z\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "59740961-9874-450e-b57a-a05dca34d4a5"
+ ],
+ "Accept-Language": [
+ "en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2578,17 +2578,14 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
- ],
- "Retry-After": [
- "60"
+ "ETag": [
+ "\"AAAAAAAgf4c=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87b8df19-b99b-4564-a89d-f4acebd5fb94"
+ "2f2aaf8a-e349-4b74-96d1-a669ad95bef2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2597,41 +2594,44 @@
"11962"
],
"x-ms-correlation-request-id": [
- "9bd4bcb2-d571-41e2-89e7-5425f55eaa28"
+ "2f2aaf8a-e349-4b74-96d1-a669ad95bef2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204719Z:9bd4bcb2-d571-41e2-89e7-5425f55eaa28"
+ "WESTUS:20220322T081858Z:2f2aaf8a-e349-4b74-96d1-a669ad95bef2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:47:19 GMT"
+ "Tue, 22 Mar 2022 08:18:58 GMT"
+ ],
+ "Content-Length": [
+ "3585"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397\",\r\n \"name\": \"ps397\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgf4c=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T07:41:48.3250751Z\",\r\n \"gatewayUrl\": \"https://ps397.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps397-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps397.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps397.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps397.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps397.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps397.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.201.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.120.51.243\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps397-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.116.31\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps397-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": true,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv2\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"principalId\": null,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T07:41:47.8779601Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T07:41:47.8779601Z\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2642,7 +2642,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2651,7 +2651,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fd3a6c81-3572-4a4b-9e94-faad3b9872b2"
+ "f15e5673-e099-4513-add7-8e73bcdd2cbe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2660,16 +2660,16 @@
"11961"
],
"x-ms-correlation-request-id": [
- "f50dc608-698d-4af7-83f9-af45a865cc41"
+ "f15e5673-e099-4513-add7-8e73bcdd2cbe"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204820Z:f50dc608-698d-4af7-83f9-af45a865cc41"
+ "WESTUS:20220322T082001Z:f15e5673-e099-4513-add7-8e73bcdd2cbe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:48:19 GMT"
+ "Tue, 22 Mar 2022 08:20:00 GMT"
],
"Expires": [
"-1"
@@ -2682,19 +2682,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2705,7 +2705,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2714,7 +2714,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "23a3c00f-c76b-4254-beb2-b614033938f8"
+ "1de4fbec-9362-4bf9-ade2-a0498139e2a6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2723,16 +2723,16 @@
"11960"
],
"x-ms-correlation-request-id": [
- "269f1e9c-2fa3-48b9-8f85-3276c31a2e2d"
+ "1de4fbec-9362-4bf9-ade2-a0498139e2a6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T204920Z:269f1e9c-2fa3-48b9-8f85-3276c31a2e2d"
+ "WESTUS:20220322T082101Z:1de4fbec-9362-4bf9-ade2-a0498139e2a6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:49:19 GMT"
+ "Tue, 22 Mar 2022 08:21:01 GMT"
],
"Expires": [
"-1"
@@ -2745,19 +2745,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2768,7 +2768,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2777,7 +2777,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fadde932-9357-41a8-9309-7f937e08df57"
+ "354fec6d-ac74-4538-a573-1d85617cf0fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2786,16 +2786,16 @@
"11959"
],
"x-ms-correlation-request-id": [
- "b2481c1a-8951-40a4-8ab6-4fbfbbac715f"
+ "354fec6d-ac74-4538-a573-1d85617cf0fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205020Z:b2481c1a-8951-40a4-8ab6-4fbfbbac715f"
+ "WESTUS:20220322T082201Z:354fec6d-ac74-4538-a573-1d85617cf0fe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:50:20 GMT"
+ "Tue, 22 Mar 2022 08:22:00 GMT"
],
"Expires": [
"-1"
@@ -2808,19 +2808,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2831,7 +2831,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2840,7 +2840,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06cf1722-06f5-46fc-9440-adf6e34a1419"
+ "4680558a-95d5-409d-9189-8f41d809ce9d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2849,16 +2849,16 @@
"11958"
],
"x-ms-correlation-request-id": [
- "d80223da-9afc-488d-9a94-f719077ea671"
+ "4680558a-95d5-409d-9189-8f41d809ce9d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205120Z:d80223da-9afc-488d-9a94-f719077ea671"
+ "WESTUS:20220322T082301Z:4680558a-95d5-409d-9189-8f41d809ce9d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:51:20 GMT"
+ "Tue, 22 Mar 2022 08:23:01 GMT"
],
"Expires": [
"-1"
@@ -2871,19 +2871,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2894,7 +2894,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2903,7 +2903,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fafb9510-4092-4375-b913-413301044d84"
+ "d03aeb46-273d-40c7-82ba-0fdc5d0b4522"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2912,16 +2912,16 @@
"11957"
],
"x-ms-correlation-request-id": [
- "159e58ed-dd08-4024-86c2-e91b22796e9b"
+ "d03aeb46-273d-40c7-82ba-0fdc5d0b4522"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205220Z:159e58ed-dd08-4024-86c2-e91b22796e9b"
+ "WESTUS:20220322T082402Z:d03aeb46-273d-40c7-82ba-0fdc5d0b4522"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:52:20 GMT"
+ "Tue, 22 Mar 2022 08:24:01 GMT"
],
"Expires": [
"-1"
@@ -2934,19 +2934,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2957,7 +2957,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2966,7 +2966,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eba76cba-2829-4b17-948c-be247dd3464a"
+ "cc106fbc-97a4-44e4-ad4c-3d36a3512062"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2975,16 +2975,16 @@
"11956"
],
"x-ms-correlation-request-id": [
- "bb0dad28-d2da-4c7d-ad23-289354256983"
+ "cc106fbc-97a4-44e4-ad4c-3d36a3512062"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205321Z:bb0dad28-d2da-4c7d-ad23-289354256983"
+ "WESTUS:20220322T082502Z:cc106fbc-97a4-44e4-ad4c-3d36a3512062"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:53:20 GMT"
+ "Tue, 22 Mar 2022 08:25:01 GMT"
],
"Expires": [
"-1"
@@ -2997,19 +2997,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3020,7 +3020,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3029,7 +3029,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4653937e-fa24-4099-ac41-de13742989cf"
+ "d87eff81-8ccc-4e64-9ac5-5e49c0d3a2ca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3038,16 +3038,16 @@
"11955"
],
"x-ms-correlation-request-id": [
- "b2dbf5a6-61ab-4942-bc4b-3fa28706c178"
+ "d87eff81-8ccc-4e64-9ac5-5e49c0d3a2ca"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205421Z:b2dbf5a6-61ab-4942-bc4b-3fa28706c178"
+ "WESTUS:20220322T082602Z:d87eff81-8ccc-4e64-9ac5-5e49c0d3a2ca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:54:21 GMT"
+ "Tue, 22 Mar 2022 08:26:02 GMT"
],
"Expires": [
"-1"
@@ -3060,19 +3060,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3083,7 +3083,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3092,7 +3092,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6c1025db-d53b-4a29-a920-422716bc5e2b"
+ "3ba69d9a-6f77-4dee-8582-c52763581cb3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3101,16 +3101,16 @@
"11954"
],
"x-ms-correlation-request-id": [
- "32349b29-4a14-4f2a-b509-c4e36788d5a3"
+ "3ba69d9a-6f77-4dee-8582-c52763581cb3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205521Z:32349b29-4a14-4f2a-b509-c4e36788d5a3"
+ "WESTUS:20220322T082702Z:3ba69d9a-6f77-4dee-8582-c52763581cb3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:55:20 GMT"
+ "Tue, 22 Mar 2022 08:27:02 GMT"
],
"Expires": [
"-1"
@@ -3123,19 +3123,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3146,7 +3146,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3155,7 +3155,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9e559d7d-153d-45a9-9bf8-0853ced27aec"
+ "baeba6b3-5149-4e4f-bfef-633cf6cbf956"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3164,16 +3164,16 @@
"11953"
],
"x-ms-correlation-request-id": [
- "178edaa4-3e21-4d28-95a7-af2c01f4dcb0"
+ "baeba6b3-5149-4e4f-bfef-633cf6cbf956"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205621Z:178edaa4-3e21-4d28-95a7-af2c01f4dcb0"
+ "WESTUS:20220322T082802Z:baeba6b3-5149-4e4f-bfef-633cf6cbf956"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:56:21 GMT"
+ "Tue, 22 Mar 2022 08:28:02 GMT"
],
"Expires": [
"-1"
@@ -3186,19 +3186,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3209,7 +3209,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3218,7 +3218,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f6909111-f42f-4ea0-829f-08201a503791"
+ "bb56ef0b-154d-4722-b0d8-cd47224559fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3227,16 +3227,16 @@
"11952"
],
"x-ms-correlation-request-id": [
- "95d6c6ed-7dd0-4256-aac2-0aa61d4521fa"
+ "bb56ef0b-154d-4722-b0d8-cd47224559fd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205721Z:95d6c6ed-7dd0-4256-aac2-0aa61d4521fa"
+ "WESTUS:20220322T082902Z:bb56ef0b-154d-4722-b0d8-cd47224559fd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:57:21 GMT"
+ "Tue, 22 Mar 2022 08:29:02 GMT"
],
"Expires": [
"-1"
@@ -3249,19 +3249,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3272,7 +3272,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3281,7 +3281,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fb332146-ddb0-45f7-a8e7-0300b58d615d"
+ "fc8d262b-cbff-45e5-94f7-f22a3d11ee91"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3290,16 +3290,16 @@
"11951"
],
"x-ms-correlation-request-id": [
- "42213d95-bc3a-4be0-851e-ce708c2df939"
+ "fc8d262b-cbff-45e5-94f7-f22a3d11ee91"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205821Z:42213d95-bc3a-4be0-851e-ce708c2df939"
+ "WESTUS:20220322T083003Z:fc8d262b-cbff-45e5-94f7-f22a3d11ee91"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:58:21 GMT"
+ "Tue, 22 Mar 2022 08:30:02 GMT"
],
"Expires": [
"-1"
@@ -3312,19 +3312,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3335,7 +3335,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3344,7 +3344,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f5df7c36-0028-4dbd-ac53-7c8dd34abbcf"
+ "8d47cdba-4bf3-49e1-a56d-58c58d4008f2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3353,16 +3353,16 @@
"11950"
],
"x-ms-correlation-request-id": [
- "69c4b3d3-98fd-494d-8bfa-caa2134ce040"
+ "8d47cdba-4bf3-49e1-a56d-58c58d4008f2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T205922Z:69c4b3d3-98fd-494d-8bfa-caa2134ce040"
+ "WESTUS:20220322T083103Z:8d47cdba-4bf3-49e1-a56d-58c58d4008f2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 20:59:21 GMT"
+ "Tue, 22 Mar 2022 08:31:02 GMT"
],
"Expires": [
"-1"
@@ -3375,19 +3375,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3398,7 +3398,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3407,7 +3407,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "982c3b89-9033-4f53-8c16-609ee0a1bee8"
+ "7ccc4033-a02c-499c-94bc-fabdd110ea67"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3416,16 +3416,16 @@
"11949"
],
"x-ms-correlation-request-id": [
- "b4b3b9c4-c6a7-41ec-a4a3-1b9929925739"
+ "7ccc4033-a02c-499c-94bc-fabdd110ea67"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210022Z:b4b3b9c4-c6a7-41ec-a4a3-1b9929925739"
+ "WESTUS:20220322T083203Z:7ccc4033-a02c-499c-94bc-fabdd110ea67"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:00:22 GMT"
+ "Tue, 22 Mar 2022 08:32:02 GMT"
],
"Expires": [
"-1"
@@ -3438,19 +3438,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3461,7 +3461,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3470,7 +3470,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6c8f2fc5-c6dd-49ef-8591-18735ea7b2e3"
+ "5383064c-ccc7-4af9-aecc-bb65c9ef9dc0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3479,16 +3479,16 @@
"11948"
],
"x-ms-correlation-request-id": [
- "6ebdf61c-caaf-465f-8c4b-e0825b3e7aca"
+ "5383064c-ccc7-4af9-aecc-bb65c9ef9dc0"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210122Z:6ebdf61c-caaf-465f-8c4b-e0825b3e7aca"
+ "WESTUS:20220322T083303Z:5383064c-ccc7-4af9-aecc-bb65c9ef9dc0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:01:21 GMT"
+ "Tue, 22 Mar 2022 08:33:03 GMT"
],
"Expires": [
"-1"
@@ -3501,19 +3501,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3524,7 +3524,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3533,7 +3533,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e69463d3-a0b8-4303-b68f-22893dc3b0fc"
+ "187ee0bc-9be3-456b-a28c-360dbfb36622"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3542,16 +3542,16 @@
"11947"
],
"x-ms-correlation-request-id": [
- "482e71f7-4814-40eb-9713-3c4b3b7c5620"
+ "187ee0bc-9be3-456b-a28c-360dbfb36622"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210222Z:482e71f7-4814-40eb-9713-3c4b3b7c5620"
+ "WESTUS:20220322T083404Z:187ee0bc-9be3-456b-a28c-360dbfb36622"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:02:22 GMT"
+ "Tue, 22 Mar 2022 08:34:03 GMT"
],
"Expires": [
"-1"
@@ -3564,19 +3564,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3587,7 +3587,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3596,7 +3596,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8fddfe6e-6ea1-4488-951b-325c54c4eff1"
+ "258b7833-2706-40fd-8e0f-fa03eaa60bf1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3605,16 +3605,16 @@
"11946"
],
"x-ms-correlation-request-id": [
- "d704e3e9-fd02-4295-a3e8-b8f321ba6b08"
+ "258b7833-2706-40fd-8e0f-fa03eaa60bf1"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210322Z:d704e3e9-fd02-4295-a3e8-b8f321ba6b08"
+ "WESTUS:20220322T083504Z:258b7833-2706-40fd-8e0f-fa03eaa60bf1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:03:22 GMT"
+ "Tue, 22 Mar 2022 08:35:04 GMT"
],
"Expires": [
"-1"
@@ -3627,19 +3627,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3650,7 +3650,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3659,7 +3659,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a6329bf2-06e9-479b-9068-fee46af28a0c"
+ "33a8b26c-2def-4f75-adae-4cba1b777536"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3668,16 +3668,16 @@
"11945"
],
"x-ms-correlation-request-id": [
- "c69486d4-cfba-44cc-aa77-9a5f343d74ad"
+ "33a8b26c-2def-4f75-adae-4cba1b777536"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210423Z:c69486d4-cfba-44cc-aa77-9a5f343d74ad"
+ "WESTUS:20220322T083604Z:33a8b26c-2def-4f75-adae-4cba1b777536"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:04:22 GMT"
+ "Tue, 22 Mar 2022 08:36:03 GMT"
],
"Expires": [
"-1"
@@ -3690,19 +3690,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3713,7 +3713,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3722,7 +3722,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4f762a09-d8ee-4f10-b0b1-bc8bb4f164c9"
+ "01778a54-cbde-4157-94b4-b19c0a884e9d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3731,16 +3731,16 @@
"11944"
],
"x-ms-correlation-request-id": [
- "5aecafe0-2a21-4e35-ab71-422d2179c313"
+ "01778a54-cbde-4157-94b4-b19c0a884e9d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210523Z:5aecafe0-2a21-4e35-ab71-422d2179c313"
+ "WESTUS:20220322T083704Z:01778a54-cbde-4157-94b4-b19c0a884e9d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:05:22 GMT"
+ "Tue, 22 Mar 2022 08:37:04 GMT"
],
"Expires": [
"-1"
@@ -3753,19 +3753,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3776,7 +3776,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3785,7 +3785,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "225d35f9-9151-42cb-97ae-ad36a4ab789b"
+ "3329601b-8e83-429d-b9ee-d9af2abf7acd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3794,16 +3794,16 @@
"11943"
],
"x-ms-correlation-request-id": [
- "5c69fe62-3f32-4955-983a-bef4b9e15493"
+ "3329601b-8e83-429d-b9ee-d9af2abf7acd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210623Z:5c69fe62-3f32-4955-983a-bef4b9e15493"
+ "WESTUS:20220322T083804Z:3329601b-8e83-429d-b9ee-d9af2abf7acd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:06:23 GMT"
+ "Tue, 22 Mar 2022 08:38:04 GMT"
],
"Expires": [
"-1"
@@ -3816,19 +3816,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3839,7 +3839,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3848,7 +3848,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d36d1338-cfb8-4ecf-bb4d-da6cdff3816e"
+ "97e18d29-2170-4e0f-8a0a-07b9fc50877a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3857,16 +3857,16 @@
"11942"
],
"x-ms-correlation-request-id": [
- "c6fb9ed8-37b8-40f3-8270-ea209dd38ed2"
+ "97e18d29-2170-4e0f-8a0a-07b9fc50877a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210723Z:c6fb9ed8-37b8-40f3-8270-ea209dd38ed2"
+ "WESTUS:20220322T083905Z:97e18d29-2170-4e0f-8a0a-07b9fc50877a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:07:22 GMT"
+ "Tue, 22 Mar 2022 08:39:04 GMT"
],
"Expires": [
"-1"
@@ -3879,19 +3879,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397/operationresults/d2VzdHVzMjpwczM5N19VcGRhdGVfZGQ2OTZkYTA=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODg2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM5Ny9vcGVyYXRpb25yZXN1bHRzL2QyVnpkSFZ6TWpwd2N6TTVOMTlWY0dSaGRHVmZaR1EyT1Raa1lUQT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ "e0bb5f8c-a9c8-4314-826d-966f47ea7f99"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3905,7 +3905,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c59e1305-86a1-438e-bb8b-c643bcd437bc"
+ "279176db-0ba6-4858-bd59-e099ae325e97"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3914,19 +3914,19 @@
"11941"
],
"x-ms-correlation-request-id": [
- "71f92b43-a1fd-439b-8118-4d6f77c0b5fd"
+ "279176db-0ba6-4858-bd59-e099ae325e97"
],
"x-ms-routing-request-id": [
- "WESTUS:20210716T210823Z:71f92b43-a1fd-439b-8118-4d6f77c0b5fd"
+ "WESTUS:20220322T084005Z:279176db-0ba6-4858-bd59-e099ae325e97"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:08:23 GMT"
+ "Tue, 22 Mar 2022 08:40:05 GMT"
],
"Content-Length": [
- "2821"
+ "3312"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3935,26 +3935,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984\",\r\n \"name\": \"ps2984\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAT8Ds=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-16T20:10:02.5133572Z\",\r\n \"gatewayUrl\": \"https://ps2984.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2984-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2984.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2984.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2984.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2984.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2984.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.80.152.64\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.66.91.80\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2984-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"4dd0be61-1390-42b5-bcea-833ffd7c9f02\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8862/providers/Microsoft.ApiManagement/service/ps397\",\r\n \"name\": \"ps397\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAAgf8E=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T07:41:48.3250751Z\",\r\n \"gatewayUrl\": \"https://ps397.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps397-westus2-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps397.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps397.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps397.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps397.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps397.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.72.201.67\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.118.99.208\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps397-southcentralus-01.regional.azure-api.net\",\r\n \"disableGateway\": false,\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv2\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": \"2019-12-01\"\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"5ab51064-9df9-4637-b29b-8f6f9bf32a58\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity\": {\r\n \"principalId\": \"7e9ff042-a100-4478-9a65-d65d98118ba0\",\r\n \"clientId\": \"4b7fdc4d-a154-4830-b399-46a12da1a1e2\"\r\n }\r\n }\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T07:41:47.8779601Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T08:18:59.6147764Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4150?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDE1MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8862?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODg2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06dbfcbf-ec06-4448-ab5b-cef833bc10c1"
+ "da7ffc55-7a99-4b37-80ae-689cad85d9f2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3965,7 +3965,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3974,13 +3974,13 @@
"14999"
],
"x-ms-request-id": [
- "1feecb99-acb4-48ab-b6f9-6e116974d7aa"
+ "2eaa67af-3bbb-4527-a113-78c6740db266"
],
"x-ms-correlation-request-id": [
- "1feecb99-acb4-48ab-b6f9-6e116974d7aa"
+ "2eaa67af-3bbb-4527-a113-78c6740db266"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T210824Z:1feecb99-acb4-48ab-b6f9-6e116974d7aa"
+ "WESTUS:20220322T084007Z:2eaa67af-3bbb-4527-a113-78c6740db266"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3989,7 +3989,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:08:23 GMT"
+ "Tue, 22 Mar 2022 08:40:06 GMT"
],
"Expires": [
"-1"
@@ -4002,16 +4002,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4022,7 +4022,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4031,13 +4031,13 @@
"11999"
],
"x-ms-request-id": [
- "fac575dd-4f28-4e14-8964-f4c61f470f3c"
+ "3c8e0562-45fe-4826-944c-8ec8e232cb0b"
],
"x-ms-correlation-request-id": [
- "fac575dd-4f28-4e14-8964-f4c61f470f3c"
+ "3c8e0562-45fe-4826-944c-8ec8e232cb0b"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T210839Z:fac575dd-4f28-4e14-8964-f4c61f470f3c"
+ "WESTUS:20220322T084022Z:3c8e0562-45fe-4826-944c-8ec8e232cb0b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4046,7 +4046,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:08:38 GMT"
+ "Tue, 22 Mar 2022 08:40:22 GMT"
],
"Expires": [
"-1"
@@ -4059,16 +4059,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4079,7 +4079,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4088,13 +4088,13 @@
"11998"
],
"x-ms-request-id": [
- "6ea4cf67-b2fe-4b37-bd94-68c17074c4a8"
+ "5c21a523-5aa4-4c3a-83f7-479ee55dfa54"
],
"x-ms-correlation-request-id": [
- "6ea4cf67-b2fe-4b37-bd94-68c17074c4a8"
+ "5c21a523-5aa4-4c3a-83f7-479ee55dfa54"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T210855Z:6ea4cf67-b2fe-4b37-bd94-68c17074c4a8"
+ "WESTUS:20220322T084037Z:5c21a523-5aa4-4c3a-83f7-479ee55dfa54"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4103,7 +4103,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:08:54 GMT"
+ "Tue, 22 Mar 2022 08:40:36 GMT"
],
"Expires": [
"-1"
@@ -4116,16 +4116,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4136,7 +4136,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4145,13 +4145,13 @@
"11997"
],
"x-ms-request-id": [
- "6857087a-bc1b-4af0-89e3-879a27fca82c"
+ "545bb7b6-36c8-4b44-ab2e-d97e736f8639"
],
"x-ms-correlation-request-id": [
- "6857087a-bc1b-4af0-89e3-879a27fca82c"
+ "545bb7b6-36c8-4b44-ab2e-d97e736f8639"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T210910Z:6857087a-bc1b-4af0-89e3-879a27fca82c"
+ "WESTUS:20220322T084052Z:545bb7b6-36c8-4b44-ab2e-d97e736f8639"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4160,7 +4160,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:09:09 GMT"
+ "Tue, 22 Mar 2022 08:40:51 GMT"
],
"Expires": [
"-1"
@@ -4173,16 +4173,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4193,7 +4193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4202,13 +4202,13 @@
"11996"
],
"x-ms-request-id": [
- "e6d9f531-e150-457b-930f-88434fe5658f"
+ "8f41a4b9-24be-4830-8129-3701db2ed616"
],
"x-ms-correlation-request-id": [
- "e6d9f531-e150-457b-930f-88434fe5658f"
+ "8f41a4b9-24be-4830-8129-3701db2ed616"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T210925Z:e6d9f531-e150-457b-930f-88434fe5658f"
+ "WESTUS:20220322T084107Z:8f41a4b9-24be-4830-8129-3701db2ed616"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4217,7 +4217,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:09:24 GMT"
+ "Tue, 22 Mar 2022 08:41:06 GMT"
],
"Expires": [
"-1"
@@ -4230,16 +4230,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4250,7 +4250,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4259,13 +4259,13 @@
"11995"
],
"x-ms-request-id": [
- "6e665255-7ba1-4463-9500-ee0febe12bcf"
+ "5253d8cc-0e01-4761-9fe2-820fdc6de69f"
],
"x-ms-correlation-request-id": [
- "6e665255-7ba1-4463-9500-ee0febe12bcf"
+ "5253d8cc-0e01-4761-9fe2-820fdc6de69f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T210940Z:6e665255-7ba1-4463-9500-ee0febe12bcf"
+ "WESTUS:20220322T084122Z:5253d8cc-0e01-4761-9fe2-820fdc6de69f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4274,7 +4274,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:09:39 GMT"
+ "Tue, 22 Mar 2022 08:41:21 GMT"
],
"Expires": [
"-1"
@@ -4287,16 +4287,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4307,7 +4307,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4316,13 +4316,13 @@
"11994"
],
"x-ms-request-id": [
- "812d50f9-f163-4630-b3dd-7bfa7bb17f70"
+ "826f8e2e-0785-46e9-8937-97e27ec23572"
],
"x-ms-correlation-request-id": [
- "812d50f9-f163-4630-b3dd-7bfa7bb17f70"
+ "826f8e2e-0785-46e9-8937-97e27ec23572"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T210955Z:812d50f9-f163-4630-b3dd-7bfa7bb17f70"
+ "WESTUS:20220322T084137Z:826f8e2e-0785-46e9-8937-97e27ec23572"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4331,7 +4331,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:09:54 GMT"
+ "Tue, 22 Mar 2022 08:41:36 GMT"
],
"Expires": [
"-1"
@@ -4344,16 +4344,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4364,7 +4364,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4373,13 +4373,13 @@
"11993"
],
"x-ms-request-id": [
- "2b4632b7-8928-467d-be88-86b1865ed00b"
+ "e10c4dd4-5baa-46e8-bac6-45bb3e3029a2"
],
"x-ms-correlation-request-id": [
- "2b4632b7-8928-467d-be88-86b1865ed00b"
+ "e10c4dd4-5baa-46e8-bac6-45bb3e3029a2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211010Z:2b4632b7-8928-467d-be88-86b1865ed00b"
+ "WESTUS:20220322T084152Z:e10c4dd4-5baa-46e8-bac6-45bb3e3029a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4388,7 +4388,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:10:09 GMT"
+ "Tue, 22 Mar 2022 08:41:52 GMT"
],
"Expires": [
"-1"
@@ -4401,16 +4401,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4421,7 +4421,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4430,13 +4430,13 @@
"11992"
],
"x-ms-request-id": [
- "6e2cdd7e-8e73-47ac-aafc-611c2a0be03a"
+ "028be77a-3a40-4b32-a0cf-7aabbbc7f99f"
],
"x-ms-correlation-request-id": [
- "6e2cdd7e-8e73-47ac-aafc-611c2a0be03a"
+ "028be77a-3a40-4b32-a0cf-7aabbbc7f99f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211025Z:6e2cdd7e-8e73-47ac-aafc-611c2a0be03a"
+ "WESTUS:20220322T084207Z:028be77a-3a40-4b32-a0cf-7aabbbc7f99f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4445,7 +4445,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:10:24 GMT"
+ "Tue, 22 Mar 2022 08:42:07 GMT"
],
"Expires": [
"-1"
@@ -4458,16 +4458,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4478,7 +4478,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4487,13 +4487,13 @@
"11991"
],
"x-ms-request-id": [
- "89a68d89-ad49-4f6b-bded-290923ae0a66"
+ "d56b7311-2ea2-4983-a0ff-3ca59b2861a7"
],
"x-ms-correlation-request-id": [
- "89a68d89-ad49-4f6b-bded-290923ae0a66"
+ "d56b7311-2ea2-4983-a0ff-3ca59b2861a7"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211040Z:89a68d89-ad49-4f6b-bded-290923ae0a66"
+ "WESTUS:20220322T084222Z:d56b7311-2ea2-4983-a0ff-3ca59b2861a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4502,7 +4502,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:10:39 GMT"
+ "Tue, 22 Mar 2022 08:42:22 GMT"
],
"Expires": [
"-1"
@@ -4515,16 +4515,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4535,7 +4535,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4544,13 +4544,13 @@
"11990"
],
"x-ms-request-id": [
- "9633c93b-6cc5-4368-9b33-035163fe522c"
+ "2c666e9c-48a4-4b9d-9779-3c33ff4f2ea9"
],
"x-ms-correlation-request-id": [
- "9633c93b-6cc5-4368-9b33-035163fe522c"
+ "2c666e9c-48a4-4b9d-9779-3c33ff4f2ea9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211055Z:9633c93b-6cc5-4368-9b33-035163fe522c"
+ "WESTUS:20220322T084237Z:2c666e9c-48a4-4b9d-9779-3c33ff4f2ea9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4559,7 +4559,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:10:54 GMT"
+ "Tue, 22 Mar 2022 08:42:37 GMT"
],
"Expires": [
"-1"
@@ -4572,16 +4572,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4592,7 +4592,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4601,13 +4601,13 @@
"11989"
],
"x-ms-request-id": [
- "14451608-61c5-4e72-8d06-614a16129aed"
+ "331bc5be-b8bb-4166-b2cd-1478221fc89d"
],
"x-ms-correlation-request-id": [
- "14451608-61c5-4e72-8d06-614a16129aed"
+ "331bc5be-b8bb-4166-b2cd-1478221fc89d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211110Z:14451608-61c5-4e72-8d06-614a16129aed"
+ "WESTUS:20220322T084253Z:331bc5be-b8bb-4166-b2cd-1478221fc89d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4616,7 +4616,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:11:09 GMT"
+ "Tue, 22 Mar 2022 08:42:52 GMT"
],
"Expires": [
"-1"
@@ -4629,16 +4629,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4649,7 +4649,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4658,13 +4658,13 @@
"11988"
],
"x-ms-request-id": [
- "3da9f28d-6ea3-4245-8182-c0e2ba052c95"
+ "7e97f7d1-0d3c-4b56-80ac-680508986baa"
],
"x-ms-correlation-request-id": [
- "3da9f28d-6ea3-4245-8182-c0e2ba052c95"
+ "7e97f7d1-0d3c-4b56-80ac-680508986baa"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211125Z:3da9f28d-6ea3-4245-8182-c0e2ba052c95"
+ "WESTUS:20220322T084308Z:7e97f7d1-0d3c-4b56-80ac-680508986baa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4673,7 +4673,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:11:25 GMT"
+ "Tue, 22 Mar 2022 08:43:07 GMT"
],
"Expires": [
"-1"
@@ -4686,16 +4686,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4705,23 +4705,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11987"
],
"x-ms-request-id": [
- "f74efb92-88b4-44fc-875e-f998352e9327"
+ "5453d7fd-f496-415c-bea3-71904ea910dc"
],
"x-ms-correlation-request-id": [
- "f74efb92-88b4-44fc-875e-f998352e9327"
+ "5453d7fd-f496-415c-bea3-71904ea910dc"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211141Z:f74efb92-88b4-44fc-875e-f998352e9327"
+ "WESTUS:20220322T084323Z:5453d7fd-f496-415c-bea3-71904ea910dc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4730,58 +4724,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:11:40 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-request-id": [
- "94a6f929-373e-40c2-b3e1-d938586e2508"
- ],
- "x-ms-correlation-request-id": [
- "94a6f929-373e-40c2-b3e1-d938586e2508"
- ],
- "x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211156Z:94a6f929-373e-40c2-b3e1-d938586e2508"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 16 Jul 2021 21:11:55 GMT"
+ "Tue, 22 Mar 2022 08:43:23 GMT"
],
"Expires": [
"-1"
@@ -4794,16 +4737,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE5UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NjItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5qSXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4814,16 +4757,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11986"
],
"x-ms-request-id": [
- "8a63dd76-a0c2-468c-b796-a553c20475f4"
+ "638a731c-7e19-4063-93d5-4ea151e7cb9e"
],
"x-ms-correlation-request-id": [
- "8a63dd76-a0c2-468c-b796-a553c20475f4"
+ "638a731c-7e19-4063-93d5-4ea151e7cb9e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20210716T211156Z:8a63dd76-a0c2-468c-b796-a553c20475f4"
+ "WESTUS:20220322T084323Z:638a731c-7e19-4063-93d5-4ea151e7cb9e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4832,7 +4775,7 @@
"nosniff"
],
"Date": [
- "Fri, 16 Jul 2021 21:11:55 GMT"
+ "Tue, 22 Mar 2022 08:43:23 GMT"
],
"Expires": [
"-1"
@@ -4847,8 +4790,8 @@
],
"Names": {
"Test-ApiManagementWithAdditionalRegionsCRUD": [
- "ps4150",
- "ps2984"
+ "ps8862",
+ "ps397"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json
index 2980d7adf317..ece805875bbc 100644
--- a/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json
+++ b/src/ApiManagement/ApiManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests.ApiManagementTests/TestCrudApiManagementWithVirtualNetwork.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4328?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDMyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps7177?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNzE3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1fdfc7fd-ac4c-4745-a681-b08d223d99bc"
+ "7125a3f9-ead9-4455-be0c-239aa4d35c42"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "3cabbb2d-5a16-4dd3-a545-fe21cefd06b6"
+ "65cc792c-a9ce-4261-ae29-0abb89fb9b94"
],
"x-ms-correlation-request-id": [
- "3cabbb2d-5a16-4dd3-a545-fe21cefd06b6"
+ "65cc792c-a9ce-4261-ae29-0abb89fb9b94"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T053433Z:3cabbb2d-5a16-4dd3-a545-fe21cefd06b6"
+ "WESTUS:20220322T051836Z:65cc792c-a9ce-4261-ae29-0abb89fb9b94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:34:33 GMT"
+ "Tue, 22 Mar 2022 05:18:35 GMT"
],
"Content-Length": [
"165"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328\",\r\n \"name\": \"ps4328\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177\",\r\n \"name\": \"ps7177\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTY/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,10 +99,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAA5eu8=\""
+ "\"AAAAAABWzZk=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -111,8 +111,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "90b7f9f5-9ce6-481e-8a41-6aea304d41a9",
- "57512b58-8526-4238-98cb-4f739493527a"
+ "1ac54fff-bbbb-4195-94d4-aa10df4e01cc",
+ "1ac54fff-bbbb-4195-94d4-aa10df4e01cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "314d4f20-077a-4669-b8b7-20a1072cb692"
+ "1ac54fff-bbbb-4195-94d4-aa10df4e01cc"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T053439Z:314d4f20-077a-4669-b8b7-20a1072cb692"
+ "WESTUS:20220322T051842Z:1ac54fff-bbbb-4195-94d4-aa10df4e01cc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:34:38 GMT"
+ "Tue, 22 Mar 2022 05:18:41 GMT"
],
"Content-Length": [
- "1489"
+ "1942"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,32 +142,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959\",\r\n \"name\": \"ps8959\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5eu8=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2021-07-15T05:34:37.0220163Z\",\r\n \"gatewayUrl\": \"https://ps8959.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8959.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356\",\r\n \"name\": \"ps2356\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWzZk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2022-03-22T05:18:39.6474389Z\",\r\n \"gatewayUrl\": \"https://ps2356.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"developerPortalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2356.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"undetermined\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T05:18:39.38231Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T05:18:39.38231Z\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTY/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8959.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\"\r\n },\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2356.azure-api.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false,\r\n \"certificateSource\": \"BuiltIn\"\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\"\r\n },\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"disableGateway\": false,\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1980"
+ "2090"
]
},
"ResponseHeaders": {
@@ -178,10 +178,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAA5e7A=\""
+ "\"AAAAAABWzsg=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -190,8 +190,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ee285cd-eabd-450f-8eb2-b4c88d605bc7",
- "34b73aad-2e00-4eab-8dc3-41d1c8edf3df"
+ "72dd988d-3562-4f01-9b3d-8d852ff8d3bb",
+ "72dd988d-3562-4f01-9b3d-8d852ff8d3bb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -200,19 +200,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "305a6bf7-3c7b-431a-a706-160ed67e593a"
+ "72dd988d-3562-4f01-9b3d-8d852ff8d3bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060752Z:305a6bf7-3c7b-431a-a706-160ed67e593a"
+ "WESTUS:20220322T060103Z:72dd988d-3562-4f01-9b3d-8d852ff8d3bb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:07:51 GMT"
+ "Tue, 22 Mar 2022 06:01:02 GMT"
],
"Content-Length": [
- "2347"
+ "2793"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -221,23 +221,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959\",\r\n \"name\": \"ps8959\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5e7A=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2021-07-15T05:34:37.0220163Z\",\r\n \"gatewayUrl\": \"https://ps8959.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8959-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8959.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8959.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8959.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8959.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8959.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.170.64.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356\",\r\n \"name\": \"ps2356\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWzsg=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2022-03-22T05:18:39.6474389Z\",\r\n \"gatewayUrl\": \"https://ps2356.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2356-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2356.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2356.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2356.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2356.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2356.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.136.137\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T05:18:39.38231Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T05:18:39.38231Z\"\r\n }\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -248,7 +248,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -257,7 +257,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "64c00726-e3c5-4588-9e13-1ad800d76642"
+ "9a730dab-a52e-405e-8916-c00f3ead5963"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -266,16 +266,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "1e24b8bc-dde8-44d2-8368-5db0f309ebcf"
+ "9a730dab-a52e-405e-8916-c00f3ead5963"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T053539Z:1e24b8bc-dde8-44d2-8368-5db0f309ebcf"
+ "WESTUS:20220322T051943Z:9a730dab-a52e-405e-8916-c00f3ead5963"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:35:38 GMT"
+ "Tue, 22 Mar 2022 05:19:43 GMT"
],
"Expires": [
"-1"
@@ -288,19 +288,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -311,7 +311,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -320,7 +320,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cf826579-ce7c-4b95-a05c-0f116477dec8"
+ "8067c946-aff1-4f81-9cb1-ba2fe4a00e8c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -329,16 +329,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "748afd0e-8d49-4a32-aabb-ec96501233b8"
+ "8067c946-aff1-4f81-9cb1-ba2fe4a00e8c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T053639Z:748afd0e-8d49-4a32-aabb-ec96501233b8"
+ "WESTUS:20220322T052043Z:8067c946-aff1-4f81-9cb1-ba2fe4a00e8c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:36:39 GMT"
+ "Tue, 22 Mar 2022 05:20:42 GMT"
],
"Expires": [
"-1"
@@ -351,19 +351,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -374,7 +374,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -383,7 +383,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "698df0b7-eab8-4040-996f-1d9ccf116f22"
+ "a976889b-1a8d-4b32-b99d-18a2a1b7445b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "64d2f58a-ebe1-4606-83b4-250575e9bd79"
+ "a976889b-1a8d-4b32-b99d-18a2a1b7445b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T053740Z:64d2f58a-ebe1-4606-83b4-250575e9bd79"
+ "WESTUS:20220322T052144Z:a976889b-1a8d-4b32-b99d-18a2a1b7445b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:37:39 GMT"
+ "Tue, 22 Mar 2022 05:21:43 GMT"
],
"Expires": [
"-1"
@@ -414,19 +414,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -437,7 +437,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -446,7 +446,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "56687264-400a-4fe1-b5f4-639878e1e64a"
+ "5cf51f6b-0fcb-419c-bc16-7c99e4ec3fb9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -455,16 +455,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "53251efa-9c6d-4618-b46e-05ba805e6a1c"
+ "5cf51f6b-0fcb-419c-bc16-7c99e4ec3fb9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T053840Z:53251efa-9c6d-4618-b46e-05ba805e6a1c"
+ "WESTUS:20220322T052244Z:5cf51f6b-0fcb-419c-bc16-7c99e4ec3fb9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:38:40 GMT"
+ "Tue, 22 Mar 2022 05:22:44 GMT"
],
"Expires": [
"-1"
@@ -477,19 +477,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -500,7 +500,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -509,7 +509,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6b36811d-d38d-49e2-8280-079eb311e480"
+ "9d079534-90b0-4dd2-b019-40a4f8a2fa6b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -518,16 +518,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "7df38a19-d2f1-4226-abdc-6d67c33b262b"
+ "9d079534-90b0-4dd2-b019-40a4f8a2fa6b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T053940Z:7df38a19-d2f1-4226-abdc-6d67c33b262b"
+ "WESTUS:20220322T052344Z:9d079534-90b0-4dd2-b019-40a4f8a2fa6b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:39:39 GMT"
+ "Tue, 22 Mar 2022 05:23:44 GMT"
],
"Expires": [
"-1"
@@ -540,19 +540,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -563,7 +563,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -572,7 +572,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "46222b55-dbfe-4aa5-a203-e50be46fbc12"
+ "78879cd6-879c-4f86-82ab-299b04ecbdc3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -581,16 +581,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "a74843cf-4bc3-4a39-858d-4a157a29caa9"
+ "78879cd6-879c-4f86-82ab-299b04ecbdc3"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054041Z:a74843cf-4bc3-4a39-858d-4a157a29caa9"
+ "WESTUS:20220322T052444Z:78879cd6-879c-4f86-82ab-299b04ecbdc3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:40:40 GMT"
+ "Tue, 22 Mar 2022 05:24:44 GMT"
],
"Expires": [
"-1"
@@ -603,19 +603,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -626,7 +626,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -635,7 +635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bb8e9c17-aac6-4b11-a779-2825c1643774"
+ "dc15c21d-2d9e-493e-9408-de959891df65"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -644,16 +644,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "8704349c-b053-4b53-83a7-af33fa532d2a"
+ "dc15c21d-2d9e-493e-9408-de959891df65"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054141Z:8704349c-b053-4b53-83a7-af33fa532d2a"
+ "WESTUS:20220322T052545Z:dc15c21d-2d9e-493e-9408-de959891df65"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:41:40 GMT"
+ "Tue, 22 Mar 2022 05:25:44 GMT"
],
"Expires": [
"-1"
@@ -666,19 +666,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -689,7 +689,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -698,7 +698,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "79276268-e513-43b8-b7cd-2aa3cc7863e3"
+ "a3e74853-29e3-411f-b903-cc92b6fde9c9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -707,16 +707,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "152b5d3b-c49e-4b9a-b0a7-cb656d8eb94a"
+ "a3e74853-29e3-411f-b903-cc92b6fde9c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054241Z:152b5d3b-c49e-4b9a-b0a7-cb656d8eb94a"
+ "WESTUS:20220322T052645Z:a3e74853-29e3-411f-b903-cc92b6fde9c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:42:41 GMT"
+ "Tue, 22 Mar 2022 05:26:45 GMT"
],
"Expires": [
"-1"
@@ -729,19 +729,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -752,7 +752,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -761,7 +761,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e0672a2-9d48-45a9-9beb-34a7d06debb5"
+ "cbf7eac7-1b5d-403a-a188-17a5a2cc9307"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -770,16 +770,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "80d905f1-5289-4bb1-a955-28f3f29b0f17"
+ "cbf7eac7-1b5d-403a-a188-17a5a2cc9307"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054342Z:80d905f1-5289-4bb1-a955-28f3f29b0f17"
+ "WESTUS:20220322T052745Z:cbf7eac7-1b5d-403a-a188-17a5a2cc9307"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:43:41 GMT"
+ "Tue, 22 Mar 2022 05:27:45 GMT"
],
"Expires": [
"-1"
@@ -792,19 +792,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -815,7 +815,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -824,7 +824,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "13677681-8ce9-4ec2-bbc3-524e8b8dad3e"
+ "8ba615ca-813e-4c66-974c-0b9bbd6c4d09"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -833,16 +833,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "77f44696-6038-4852-9c5e-e6f4f81b93da"
+ "8ba615ca-813e-4c66-974c-0b9bbd6c4d09"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054442Z:77f44696-6038-4852-9c5e-e6f4f81b93da"
+ "WESTUS:20220322T052846Z:8ba615ca-813e-4c66-974c-0b9bbd6c4d09"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:44:42 GMT"
+ "Tue, 22 Mar 2022 05:28:46 GMT"
],
"Expires": [
"-1"
@@ -855,19 +855,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -878,7 +878,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -887,7 +887,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "231df773-4ad5-4b9a-9aa4-d46e28bfaaa3"
+ "8a1c90c7-e1c0-418e-aea7-30e2342ecadd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -896,16 +896,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "1ccbfc7f-3b3a-4304-8944-97baed06de3b"
+ "8a1c90c7-e1c0-418e-aea7-30e2342ecadd"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054542Z:1ccbfc7f-3b3a-4304-8944-97baed06de3b"
+ "WESTUS:20220322T052946Z:8a1c90c7-e1c0-418e-aea7-30e2342ecadd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:45:42 GMT"
+ "Tue, 22 Mar 2022 05:29:45 GMT"
],
"Expires": [
"-1"
@@ -918,19 +918,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -941,7 +941,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -950,7 +950,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "863a057d-56c3-4e56-84cf-4e2ad5dc0d2f"
+ "9ded441f-2eee-471f-b3d0-4c2373bcd2e4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -959,16 +959,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "7b33ad97-9b95-48c7-8324-4ed38c084797"
+ "9ded441f-2eee-471f-b3d0-4c2373bcd2e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054643Z:7b33ad97-9b95-48c7-8324-4ed38c084797"
+ "WESTUS:20220322T053046Z:9ded441f-2eee-471f-b3d0-4c2373bcd2e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:46:42 GMT"
+ "Tue, 22 Mar 2022 05:30:46 GMT"
],
"Expires": [
"-1"
@@ -981,19 +981,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1004,7 +1004,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1013,7 +1013,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "008c1deb-4b01-48aa-a869-02ed27678104"
+ "48516d44-07fc-447c-a38f-c850933ad222"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1022,16 +1022,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "2b5dffef-a9fc-4fd6-bfa4-bc0430872086"
+ "48516d44-07fc-447c-a38f-c850933ad222"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054743Z:2b5dffef-a9fc-4fd6-bfa4-bc0430872086"
+ "WESTUS:20220322T053147Z:48516d44-07fc-447c-a38f-c850933ad222"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:47:43 GMT"
+ "Tue, 22 Mar 2022 05:31:46 GMT"
],
"Expires": [
"-1"
@@ -1044,19 +1044,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1067,7 +1067,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1076,7 +1076,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "050ebb9f-5177-4a2b-99ac-b00dc5009d3f"
+ "79825d1a-b9d8-4267-8071-2636198c55c7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1085,16 +1085,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "5c15f8af-dfcb-4692-bc0d-bbf0b69ec743"
+ "79825d1a-b9d8-4267-8071-2636198c55c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054844Z:5c15f8af-dfcb-4692-bc0d-bbf0b69ec743"
+ "WESTUS:20220322T053247Z:79825d1a-b9d8-4267-8071-2636198c55c7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:48:43 GMT"
+ "Tue, 22 Mar 2022 05:32:46 GMT"
],
"Expires": [
"-1"
@@ -1107,19 +1107,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1130,7 +1130,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1139,7 +1139,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b8800f6f-d2b8-457b-9d62-4c89766a76e8"
+ "84ba8498-9d13-4c3d-bdb6-e4e693879a93"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1148,16 +1148,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "8868716c-83c5-4817-8d3f-2385db6b1531"
+ "84ba8498-9d13-4c3d-bdb6-e4e693879a93"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T054944Z:8868716c-83c5-4817-8d3f-2385db6b1531"
+ "WESTUS:20220322T053347Z:84ba8498-9d13-4c3d-bdb6-e4e693879a93"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:49:44 GMT"
+ "Tue, 22 Mar 2022 05:33:47 GMT"
],
"Expires": [
"-1"
@@ -1170,19 +1170,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1193,7 +1193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1202,7 +1202,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5cb5efcf-3023-4a4f-9d0b-9ac25554c5d8"
+ "6bdff42c-2a5f-4017-b588-5de77b00e326"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1211,16 +1211,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "6c834cb6-1bd9-4d7c-abaa-b0a5689c81a7"
+ "6bdff42c-2a5f-4017-b588-5de77b00e326"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055044Z:6c834cb6-1bd9-4d7c-abaa-b0a5689c81a7"
+ "WESTUS:20220322T053447Z:6bdff42c-2a5f-4017-b588-5de77b00e326"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:50:44 GMT"
+ "Tue, 22 Mar 2022 05:34:47 GMT"
],
"Expires": [
"-1"
@@ -1233,19 +1233,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1256,7 +1256,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1265,7 +1265,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "091ee5ca-61ae-4116-aba1-5727279342a5"
+ "f455cb35-8009-488b-8a79-04ae7087da19"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1274,16 +1274,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "7ace1720-a0fb-4505-9c3a-773c79893d3d"
+ "f455cb35-8009-488b-8a79-04ae7087da19"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055144Z:7ace1720-a0fb-4505-9c3a-773c79893d3d"
+ "WESTUS:20220322T053548Z:f455cb35-8009-488b-8a79-04ae7087da19"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:51:44 GMT"
+ "Tue, 22 Mar 2022 05:35:47 GMT"
],
"Expires": [
"-1"
@@ -1296,19 +1296,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1319,7 +1319,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1328,7 +1328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "520c1fae-8866-4ea3-99aa-e13178a36d7a"
+ "58281ee8-a478-46f1-b021-625e0e294186"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1337,16 +1337,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "0ae94e41-00b9-41e2-8bb9-5d7746eb2271"
+ "58281ee8-a478-46f1-b021-625e0e294186"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055245Z:0ae94e41-00b9-41e2-8bb9-5d7746eb2271"
+ "WESTUS:20220322T053648Z:58281ee8-a478-46f1-b021-625e0e294186"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:52:44 GMT"
+ "Tue, 22 Mar 2022 05:36:47 GMT"
],
"Expires": [
"-1"
@@ -1359,19 +1359,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1382,7 +1382,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1391,7 +1391,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c478bb2f-693d-4790-a392-1bd176fd6dee"
+ "35abc816-0316-42f2-9a0c-1af4c59f8d04"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1400,16 +1400,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "c0e8f272-a8ce-43e6-a888-656a03a96f24"
+ "35abc816-0316-42f2-9a0c-1af4c59f8d04"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055345Z:c0e8f272-a8ce-43e6-a888-656a03a96f24"
+ "WESTUS:20220322T053748Z:35abc816-0316-42f2-9a0c-1af4c59f8d04"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:53:45 GMT"
+ "Tue, 22 Mar 2022 05:37:48 GMT"
],
"Expires": [
"-1"
@@ -1422,19 +1422,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1445,7 +1445,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1454,7 +1454,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b9025bb0-4798-4257-83b3-d95117d46937"
+ "428ae3d1-ce80-447a-a200-282ccad5ad70"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1463,16 +1463,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "9f2dad10-8b4e-438f-a2cd-9534f6592c39"
+ "428ae3d1-ce80-447a-a200-282ccad5ad70"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055445Z:9f2dad10-8b4e-438f-a2cd-9534f6592c39"
+ "WESTUS:20220322T053849Z:428ae3d1-ce80-447a-a200-282ccad5ad70"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:54:44 GMT"
+ "Tue, 22 Mar 2022 05:38:48 GMT"
],
"Expires": [
"-1"
@@ -1485,19 +1485,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1508,7 +1508,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1517,7 +1517,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "26961567-2a1f-4b15-b051-a03969c145ab"
+ "f05ee772-49fa-4f3b-9768-69689ca1df0f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1526,16 +1526,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "95030a10-16e6-48d8-afad-495cdcbf91d9"
+ "f05ee772-49fa-4f3b-9768-69689ca1df0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055546Z:95030a10-16e6-48d8-afad-495cdcbf91d9"
+ "WESTUS:20220322T053949Z:f05ee772-49fa-4f3b-9768-69689ca1df0f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:55:45 GMT"
+ "Tue, 22 Mar 2022 05:39:49 GMT"
],
"Expires": [
"-1"
@@ -1548,19 +1548,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1571,7 +1571,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1580,7 +1580,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6a84936a-fc43-49e5-991a-d9a1ccbb46e2"
+ "8111d52a-3f94-44b6-bbfb-1a69fdbf6c1a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1589,16 +1589,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "5d03f372-fbd3-45ac-b785-80c73d134cbe"
+ "8111d52a-3f94-44b6-bbfb-1a69fdbf6c1a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055646Z:5d03f372-fbd3-45ac-b785-80c73d134cbe"
+ "WESTUS:20220322T054049Z:8111d52a-3f94-44b6-bbfb-1a69fdbf6c1a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:56:45 GMT"
+ "Tue, 22 Mar 2022 05:40:49 GMT"
],
"Expires": [
"-1"
@@ -1611,19 +1611,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1634,7 +1634,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1643,7 +1643,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "66de6289-6691-4eb1-ab3a-71b26169bbbf"
+ "7e8451d1-283a-48a8-b5c7-b6d94aad9a59"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1652,16 +1652,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "d0207259-7b01-4f89-b56c-a01a099087b6"
+ "7e8451d1-283a-48a8-b5c7-b6d94aad9a59"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055746Z:d0207259-7b01-4f89-b56c-a01a099087b6"
+ "WESTUS:20220322T054149Z:7e8451d1-283a-48a8-b5c7-b6d94aad9a59"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:57:46 GMT"
+ "Tue, 22 Mar 2022 05:41:49 GMT"
],
"Expires": [
"-1"
@@ -1674,19 +1674,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1697,7 +1697,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1706,7 +1706,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e95a3fcd-189e-4369-9bb7-efd57cf7d334"
+ "8c400c4c-5287-4d00-b8fd-27b8cf3de8f9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1715,16 +1715,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "312db683-9a34-4ce3-8cf3-638e485a7c7b"
+ "8c400c4c-5287-4d00-b8fd-27b8cf3de8f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055847Z:312db683-9a34-4ce3-8cf3-638e485a7c7b"
+ "WESTUS:20220322T054250Z:8c400c4c-5287-4d00-b8fd-27b8cf3de8f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:58:46 GMT"
+ "Tue, 22 Mar 2022 05:42:49 GMT"
],
"Expires": [
"-1"
@@ -1737,19 +1737,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1760,7 +1760,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1769,7 +1769,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "175691be-f394-4100-bd9c-5ef0462d8c81"
+ "1833cf6a-8bed-4289-bf52-ec8765773726"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1778,16 +1778,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "4032bccd-30d8-4539-83bf-f3ee1704a0eb"
+ "1833cf6a-8bed-4289-bf52-ec8765773726"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T055947Z:4032bccd-30d8-4539-83bf-f3ee1704a0eb"
+ "WESTUS:20220322T054350Z:1833cf6a-8bed-4289-bf52-ec8765773726"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 05:59:47 GMT"
+ "Tue, 22 Mar 2022 05:43:50 GMT"
],
"Expires": [
"-1"
@@ -1800,19 +1800,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1823,7 +1823,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1832,7 +1832,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "988e3f10-515c-4532-9d84-8e65cd88c29c"
+ "945c4fde-8f9c-43c5-84a3-9a72a024b258"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1841,16 +1841,16 @@
"11974"
],
"x-ms-correlation-request-id": [
- "1769673c-657d-4917-8527-a354a68e0394"
+ "945c4fde-8f9c-43c5-84a3-9a72a024b258"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060047Z:1769673c-657d-4917-8527-a354a68e0394"
+ "WESTUS:20220322T054451Z:945c4fde-8f9c-43c5-84a3-9a72a024b258"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:00:47 GMT"
+ "Tue, 22 Mar 2022 05:44:50 GMT"
],
"Expires": [
"-1"
@@ -1863,19 +1863,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1886,7 +1886,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1895,7 +1895,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8f8d9666-5768-4547-b914-edc5a2920a7d"
+ "6c83053b-c08c-42bf-9880-0adf101bb478"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1904,16 +1904,16 @@
"11973"
],
"x-ms-correlation-request-id": [
- "07dfeb52-31a3-42fb-9763-0fda94c44346"
+ "6c83053b-c08c-42bf-9880-0adf101bb478"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060148Z:07dfeb52-31a3-42fb-9763-0fda94c44346"
+ "WESTUS:20220322T054551Z:6c83053b-c08c-42bf-9880-0adf101bb478"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:01:48 GMT"
+ "Tue, 22 Mar 2022 05:45:50 GMT"
],
"Expires": [
"-1"
@@ -1926,19 +1926,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -1949,7 +1949,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -1958,7 +1958,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ce3fd376-a39d-4932-8adb-57bf0e9a398c"
+ "8cad9ac6-f9ce-4f9a-80a9-efa999159f09"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1967,16 +1967,16 @@
"11972"
],
"x-ms-correlation-request-id": [
- "58a84704-575a-46da-a724-f09acef20b16"
+ "8cad9ac6-f9ce-4f9a-80a9-efa999159f09"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060248Z:58a84704-575a-46da-a724-f09acef20b16"
+ "WESTUS:20220322T054651Z:8cad9ac6-f9ce-4f9a-80a9-efa999159f09"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:02:47 GMT"
+ "Tue, 22 Mar 2022 05:46:51 GMT"
],
"Expires": [
"-1"
@@ -1989,19 +1989,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2012,7 +2012,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2021,7 +2021,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69ae788a-3900-444d-adc2-dc96f35423ce"
+ "3cf99d38-5467-4d61-829c-e592ae7a1fab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2030,16 +2030,16 @@
"11971"
],
"x-ms-correlation-request-id": [
- "e00761ba-0566-463a-b958-95366ab4e4b0"
+ "3cf99d38-5467-4d61-829c-e592ae7a1fab"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060348Z:e00761ba-0566-463a-b958-95366ab4e4b0"
+ "WESTUS:20220322T054752Z:3cf99d38-5467-4d61-829c-e592ae7a1fab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:03:48 GMT"
+ "Tue, 22 Mar 2022 05:47:51 GMT"
],
"Expires": [
"-1"
@@ -2052,19 +2052,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2075,7 +2075,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2084,7 +2084,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "92b656fc-7211-4698-81dc-6574eb3dacb0"
+ "efb39110-b823-4618-8e81-fbf333e50d35"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2093,16 +2093,16 @@
"11970"
],
"x-ms-correlation-request-id": [
- "7dd6c7c1-52d9-43f9-b70b-369ad32e0d24"
+ "efb39110-b823-4618-8e81-fbf333e50d35"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060448Z:7dd6c7c1-52d9-43f9-b70b-369ad32e0d24"
+ "WESTUS:20220322T054852Z:efb39110-b823-4618-8e81-fbf333e50d35"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:04:47 GMT"
+ "Tue, 22 Mar 2022 05:48:51 GMT"
],
"Expires": [
"-1"
@@ -2115,19 +2115,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2138,7 +2138,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2147,7 +2147,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a023728b-e011-47f1-b5e5-32b1e318771a"
+ "654130e7-f2ea-4baf-afe2-0dba8d2d1c9a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2156,16 +2156,16 @@
"11969"
],
"x-ms-correlation-request-id": [
- "f3299569-8860-426b-9e13-5d1b9a0c670e"
+ "654130e7-f2ea-4baf-afe2-0dba8d2d1c9a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060549Z:f3299569-8860-426b-9e13-5d1b9a0c670e"
+ "WESTUS:20220322T054952Z:654130e7-f2ea-4baf-afe2-0dba8d2d1c9a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:05:48 GMT"
+ "Tue, 22 Mar 2022 05:49:52 GMT"
],
"Expires": [
"-1"
@@ -2178,19 +2178,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2201,7 +2201,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2210,7 +2210,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "53edf2bc-1164-468e-a957-72c458476a78"
+ "3532e748-e068-4b5c-ad93-50cdaffca280"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2219,16 +2219,16 @@
"11968"
],
"x-ms-correlation-request-id": [
- "a2701481-2611-4c29-ac2a-3ca9dd607828"
+ "3532e748-e068-4b5c-ad93-50cdaffca280"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060649Z:a2701481-2611-4c29-ac2a-3ca9dd607828"
+ "WESTUS:20220322T055053Z:3532e748-e068-4b5c-ad93-50cdaffca280"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:06:48 GMT"
+ "Tue, 22 Mar 2022 05:50:52 GMT"
],
"Expires": [
"-1"
@@ -2241,19 +2241,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2263,60 +2263,1005 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dbdc078d-82e1-44b7-a881-6af37da28d68"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-correlation-request-id": [
+ "dbdc078d-82e1-44b7-a881-6af37da28d68"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055153Z:dbdc078d-82e1-44b7-a881-6af37da28d68"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:51:52 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a712397-4c1e-4d83-9f5a-92fa56319fa3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a712397-4c1e-4d83-9f5a-92fa56319fa3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055253Z:1a712397-4c1e-4d83-9f5a-92fa56319fa3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:52:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "db1e5bdb-abc5-4bd5-b5c6-83cc5baa8770"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-correlation-request-id": [
+ "db1e5bdb-abc5-4bd5-b5c6-83cc5baa8770"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055354Z:db1e5bdb-abc5-4bd5-b5c6-83cc5baa8770"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:53:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a80bf9f5-52b6-4794-b9ab-7f20c048a859"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-correlation-request-id": [
+ "a80bf9f5-52b6-4794-b9ab-7f20c048a859"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055454Z:a80bf9f5-52b6-4794-b9ab-7f20c048a859"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:54:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "04634f2b-1be6-4f42-a833-fde8526c4609"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-correlation-request-id": [
+ "04634f2b-1be6-4f42-a833-fde8526c4609"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055554Z:04634f2b-1be6-4f42-a833-fde8526c4609"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:55:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ee349fcc-0a5f-4a69-a770-373abdda5d26"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee349fcc-0a5f-4a69-a770-373abdda5d26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055656Z:ee349fcc-0a5f-4a69-a770-373abdda5d26"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:56:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69f6fe35-3dc1-4850-a0dc-45ad7961102e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "x-ms-correlation-request-id": [
+ "69f6fe35-3dc1-4850-a0dc-45ad7961102e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055758Z:69f6fe35-3dc1-4850-a0dc-45ad7961102e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:57:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9a811ac8-f302-4cdf-984f-12ebd025589c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a811ac8-f302-4cdf-984f-12ebd025589c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055858Z:9a811ac8-f302-4cdf-984f-12ebd025589c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:58:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3ca2c77c-8e2a-4bd3-8842-717a66f70b48"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ca2c77c-8e2a-4bd3-8842-717a66f70b48"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T055959Z:3ca2c77c-8e2a-4bd3-8842-717a66f70b48"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 05:59:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9BY3RfYTQzM2JmNjM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5QlkzUmZZVFF6TTJKbU5qTT0/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f2c8af4-1d90-4f72-a954-3f4c22efee7a"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d0c848c5-f514-47fe-8b07-7f6880a272dc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0c848c5-f514-47fe-8b07-7f6880a272dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T060059Z:d0c848c5-f514-47fe-8b07-7f6880a272dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 06:00:58 GMT"
+ ],
+ "Content-Length": [
+ "2785"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356\",\r\n \"name\": \"ps2356\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWzsQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T05:18:39.6474389Z\",\r\n \"gatewayUrl\": \"https://ps2356.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2356-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2356.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2356.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2356.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2356.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2356.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.136.137\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T05:18:39.38231Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T05:18:39.38231Z\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/networkstatus?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d335e30d-bd9f-46af-bf4c-6d8dd8a34171"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "129d234d-0f67-43c0-a15c-630292fb8403"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
+ ],
+ "x-ms-correlation-request-id": [
+ "129d234d-0f67-43c0-a15c-630292fb8403"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T060059Z:129d234d-0f67-43c0-a15c-630292fb8403"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 06:00:58 GMT"
+ ],
+ "Content-Length": [
+ "2971"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:05.3011749Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:05.3011749Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:03.6256334Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:03.6256334Z\",\r\n \"resourceType\": \"FileStorage\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:03.7844537Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:03.7844537Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:04.8927177Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:04.8927177Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlqrs0lrqlkffam8i7.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:05.3317152Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:05.3317152Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:03.753495Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:03.753495Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:03.753495Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:03.753495Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:03.8337026Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:03.8337026Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:03.0632269Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:03.0632269Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:04.2037721Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:04.2037721Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:04.8286398Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:04.8286398Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:07.8127613Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:07.8127613Z\",\r\n \"resourceType\": \"SourceControl\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T05:57:04.9692512Z\",\r\n \"lastStatusChange\": \"2022-03-22T05:57:04.9692512Z\",\r\n \"resourceType\": \"Email\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n }\r\n]",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/networkstatus?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "091e96e8-d7d1-42ae-a652-7f2106c74d77"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b0db5278-d051-4a3b-ae4b-b35d7bfc026d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0db5278-d051-4a3b-ae4b-b35d7bfc026d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T062714Z:b0db5278-d051-4a3b-ae4b-b35d7bfc026d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 06:27:13 GMT"
+ ],
+ "Content-Length": [
+ "5338"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.4278705Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.4278705Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.4591219Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.4591219Z\",\r\n \"resourceType\": \"FileStorage\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.3522426Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.3522426Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.3966586Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.3966586Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlqrs0lrqlkffam8i7.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.5997491Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.5997491Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.5059968Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.5059968Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.4278705Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.4278705Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.5250104Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.5250104Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.8341598Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.8341598Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.4278705Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.4278705Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.4591219Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.4591219Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.5059968Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.5059968Z\",\r\n \"resourceType\": \"SourceControl\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:21:26.7091249Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:21:26.7091249Z\",\r\n \"resourceType\": \"Email\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:52.1175248Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:52.1175248Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstcyxrbx2isb8kqjoqys.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:52.1642842Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:52.1642842Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimstq0ygrwtsnjx8jypm3v.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:51.9309731Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:51.9309731Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlqrs0lrqlkffam8i7.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:52.2892848Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:52.2892848Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:51.9142985Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:51.9142985Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:51.9611544Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:51.9611544Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:52.0237271Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:52.0237271Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:51.9611544Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:51.9611544Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:52.0237271Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:52.0237271Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2022-03-22T06:12:51.9309731Z\",\r\n \"lastStatusChange\": \"2022-03-22T06:12:51.9309731Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n }\r\n]",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTY/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a49f5a27-edc3-4051-a168-21d418ceffc3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAABWzsQ=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "98f38c02-85a5-40a5-9fc5-da45e8649ada"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-correlation-request-id": [
+ "98f38c02-85a5-40a5-9fc5-da45e8649ada"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T060100Z:98f38c02-85a5-40a5-9fc5-da45e8649ada"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 06:00:59 GMT"
+ ],
+ "Content-Length": [
+ "2785"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356\",\r\n \"name\": \"ps2356\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWzsQ=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T05:18:39.6474389Z\",\r\n \"gatewayUrl\": \"https://ps2356.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2356-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2356.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2356.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2356.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2356.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2356.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.136.137\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T05:18:39.38231Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T05:18:39.38231Z\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dcbd5b48-2a60-4d6f-af60-c9f287be9e5f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
+ "x-ms-correlation-request-id": [
+ "dcbd5b48-2a60-4d6f-af60-c9f287be9e5f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T060203Z:dcbd5b48-2a60-4d6f-af60-c9f287be9e5f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 06:02:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "004f2548-b035-4810-be5c-4703ed96ad63"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-correlation-request-id": [
+ "004f2548-b035-4810-be5c-4703ed96ad63"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T060303Z:004f2548-b035-4810-be5c-4703ed96ad63"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 06:03:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
+ ],
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a80111ef-58af-4b41-b478-6686ef1c963c"
+ "0bb075af-5aa2-4736-b9bb-fca3b14963eb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11953"
],
"x-ms-correlation-request-id": [
- "32d02538-bf5f-4dd7-a65b-3d0bc81311ba"
+ "0bb075af-5aa2-4736-b9bb-fca3b14963eb"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060749Z:32d02538-bf5f-4dd7-a65b-3d0bc81311ba"
+ "WESTUS:20220322T060404Z:0bb075af-5aa2-4736-b9bb-fca3b14963eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:07:48 GMT"
- ],
- "Content-Length": [
- "2339"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Tue, 22 Mar 2022 06:04:03 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959\",\r\n \"name\": \"ps8959\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5e60=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T05:34:37.0220163Z\",\r\n \"gatewayUrl\": \"https://ps8959.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8959-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8959.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8959.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8959.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8959.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8959.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.170.64.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/networkstatus?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b151f5a2-f628-46f5-aa9b-13e5f90b5d9f"
- ],
- "Accept-Language": [
- "en-US"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2326,60 +3271,60 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3b198823-7b2f-48d8-9b1c-f7d85bb3839d"
+ "34c250ab-bcc1-44af-a5f4-9a2b30faf2a8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11952"
],
"x-ms-correlation-request-id": [
- "0f0ccc72-a45c-478d-a4ca-efafee9c40d3"
+ "34c250ab-bcc1-44af-a5f4-9a2b30faf2a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060750Z:0f0ccc72-a45c-478d-a4ca-efafee9c40d3"
+ "WESTUS:20220322T060504Z:34c250ab-bcc1-44af-a5f4-9a2b30faf2a8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:07:49 GMT"
- ],
- "Content-Length": [
- "2972"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Tue, 22 Mar 2022 06:05:03 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.9125032Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.9125032Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.9626945Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.9626945Z\",\r\n \"resourceType\": \"FileStorage\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:09.365863Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:09.365863Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.8537305Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.8537305Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlbure6u6w7oxju0sl.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:09.0883861Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:09.0883861Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.3808992Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.3808992Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.7755739Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.7755739Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.7871521Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.7871521Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.4798455Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.4798455Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:09.4949265Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:09.4949265Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:08.9626945Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:08.9626945Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:32.4769511Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:32.4769511Z\",\r\n \"resourceType\": \"SourceControl\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:04:09.8352348Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:04:09.8352348Z\",\r\n \"resourceType\": \"Email\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n }\r\n]",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/networkstatus?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39115799-177f-4192-b19b-0b516cf6e6c6"
- ],
- "Accept-Language": [
- "en-US"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2389,60 +3334,60 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9c7d3863-f209-4ceb-bc25-bfa53339faf0"
+ "2b2672a1-8191-4ce4-a01b-18aeab4bb95d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
+ "11951"
],
"x-ms-correlation-request-id": [
- "ac77cad2-6f01-4152-955b-e46f171fa518"
+ "2b2672a1-8191-4ce4-a01b-18aeab4bb95d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062659Z:ac77cad2-6f01-4152-955b-e46f171fa518"
+ "WESTUS:20220322T060605Z:2b2672a1-8191-4ce4-a01b-18aeab4bb95d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:26:58 GMT"
- ],
- "Content-Length": [
- "5337"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Tue, 22 Mar 2022 06:06:04 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "[\r\n {\r\n \"location\": \"East US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.9265421Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.9265421Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.9265421Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.9265421Z\",\r\n \"resourceType\": \"FileStorage\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.9081117Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.9081117Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.9566798Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.9566798Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlbure6u6w7oxju0sl.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.9768081Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.9768081Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.9867972Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.9867972Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.8161077Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.8161077Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.7987374Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.7987374Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:46.0174867Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:46.0174867Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:46.0370427Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:46.0370427Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:45.9265421Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:45.9265421Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:47.0174966Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:47.0174966Z\",\r\n \"resourceType\": \"SourceControl\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:23:46.3769176Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:23:46.3769176Z\",\r\n \"resourceType\": \"Email\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimst57zax5g6gphmnieq3y.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.5928366Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.5928366Z\",\r\n \"resourceType\": \"BlobStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.7476535Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.7476535Z\",\r\n \"resourceType\": \"Queue\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"apimstsapijaguvnx1kdu89w.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.6707225Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.6707225Z\",\r\n \"resourceType\": \"TableStorage\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"apirpsqlbure6u6w7oxju0sl.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.7662342Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.7662342Z\",\r\n \"resourceType\": \"SQLDatabase\",\r\n \"isOptional\": false\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.6216397Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.6216397Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://gcs.prod.warm.ingestion.monitoring.azure.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.7154119Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.7154119Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://global.prod.microsoftmetrics.com/\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.7340218Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.7340218Z\",\r\n \"resourceType\": \"Monitoring\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://login.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.6528908Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.6528908Z\",\r\n \"resourceType\": \"AzureActiveDirectory\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"https://prod3.prod.microsoftmetrics.com:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.7662342Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.7662342Z\",\r\n \"resourceType\": \"Metrics\",\r\n \"isOptional\": true\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2021-07-15T06:22:20.6060374Z\",\r\n \"lastStatusChange\": \"2021-07-15T06:22:20.6060374Z\",\r\n \"resourceType\": \"InternalCache\",\r\n \"isOptional\": true\r\n }\r\n ]\r\n }\r\n }\r\n]",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f6277b0-6b1e-44a6-91e5-3e6089a4d849"
- ],
- "Accept-Language": [
- "en-US"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2452,60 +3397,123 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAA5e60=\""
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "56103de9-7c42-4eda-9f35-aa349a4c0205"
+ "cc0bef36-f43c-4961-a0f3-111125302144"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11950"
],
"x-ms-correlation-request-id": [
- "89370ba8-6157-4a96-8225-f2757d943cba"
+ "cc0bef36-f43c-4961-a0f3-111125302144"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060750Z:89370ba8-6157-4a96-8225-f2757d943cba"
+ "WESTUS:20220322T060705Z:cc0bef36-f43c-4961-a0f3-111125302144"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:07:49 GMT"
+ "Tue, 22 Mar 2022 06:07:04 GMT"
+ ],
+ "Expires": [
+ "-1"
],
"Content-Length": [
- "2339"
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "User-Agent": [
+ "FxVersion/4.700.22.11601",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d2bf9826-c69b-4f77-80dc-5aced73baf5d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2bf9826-c69b-4f77-80dc-5aced73baf5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20220322T060805Z:d2bf9826-c69b-4f77-80dc-5aced73baf5d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 22 Mar 2022 06:08:05 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959\",\r\n \"name\": \"ps8959\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5e60=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T05:34:37.0220163Z\",\r\n \"gatewayUrl\": \"https://ps8959.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8959-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8959.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8959.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8959.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8959.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8959.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.170.64.195\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2516,7 +3524,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2525,25 +3533,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a738c6f-a263-4c3d-babe-90eb96d21425"
+ "a9ad73e0-036b-443a-9e42-f84575b6ceaf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11948"
],
"x-ms-correlation-request-id": [
- "cd2528e0-d683-4297-b39c-36e56a16241f"
+ "a9ad73e0-036b-443a-9e42-f84575b6ceaf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060852Z:cd2528e0-d683-4297-b39c-36e56a16241f"
+ "WESTUS:20220322T060906Z:a9ad73e0-036b-443a-9e42-f84575b6ceaf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:08:52 GMT"
+ "Tue, 22 Mar 2022 06:09:05 GMT"
],
"Expires": [
"-1"
@@ -2556,19 +3564,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2579,7 +3587,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2588,25 +3596,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2e27e86-6981-4e03-8f73-44875e42104b"
+ "8830615f-95bf-4639-9cf1-17e8fc0beeaa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "11947"
],
"x-ms-correlation-request-id": [
- "7c420959-3c34-4de0-b6af-a314afd46238"
+ "8830615f-95bf-4639-9cf1-17e8fc0beeaa"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T060952Z:7c420959-3c34-4de0-b6af-a314afd46238"
+ "WESTUS:20220322T061006Z:8830615f-95bf-4639-9cf1-17e8fc0beeaa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:09:51 GMT"
+ "Tue, 22 Mar 2022 06:10:06 GMT"
],
"Expires": [
"-1"
@@ -2619,19 +3627,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2642,7 +3650,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2651,25 +3659,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dd46a64e-8c24-41b4-8f6b-b165b7aabbf5"
+ "05c8aeaf-6e16-487f-af84-08e340aea7ea"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11946"
],
"x-ms-correlation-request-id": [
- "3276dc0b-1c80-4947-a78e-ba219b22ac54"
+ "05c8aeaf-6e16-487f-af84-08e340aea7ea"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061053Z:3276dc0b-1c80-4947-a78e-ba219b22ac54"
+ "WESTUS:20220322T061106Z:05c8aeaf-6e16-487f-af84-08e340aea7ea"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:10:52 GMT"
+ "Tue, 22 Mar 2022 06:11:06 GMT"
],
"Expires": [
"-1"
@@ -2682,19 +3690,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2705,7 +3713,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2714,25 +3722,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bcae861c-f817-4ec7-a053-b478ea04ec32"
+ "375100c9-49f5-456c-b182-031a3146b987"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
+ "11945"
],
"x-ms-correlation-request-id": [
- "eea45f57-6db6-4e40-99b9-bda2bcbec0f6"
+ "375100c9-49f5-456c-b182-031a3146b987"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061153Z:eea45f57-6db6-4e40-99b9-bda2bcbec0f6"
+ "WESTUS:20220322T061207Z:375100c9-49f5-456c-b182-031a3146b987"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:11:53 GMT"
+ "Tue, 22 Mar 2022 06:12:07 GMT"
],
"Expires": [
"-1"
@@ -2745,19 +3753,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2768,7 +3776,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2777,25 +3785,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3af6d43-a2d7-45fd-8e91-5d655515b375"
+ "6166efd4-c8e4-4323-b100-be3a7b7dd89c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11944"
],
"x-ms-correlation-request-id": [
- "6d3589aa-1f3d-41f1-a188-d4e97f5925c8"
+ "6166efd4-c8e4-4323-b100-be3a7b7dd89c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061253Z:6d3589aa-1f3d-41f1-a188-d4e97f5925c8"
+ "WESTUS:20220322T061307Z:6166efd4-c8e4-4323-b100-be3a7b7dd89c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:12:53 GMT"
+ "Tue, 22 Mar 2022 06:13:07 GMT"
],
"Expires": [
"-1"
@@ -2808,19 +3816,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2831,7 +3839,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2840,25 +3848,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9ef3ac5d-bef5-4b47-bffc-31571524fde8"
+ "99368d88-6d03-403e-99ad-a90e56703c55"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11943"
],
"x-ms-correlation-request-id": [
- "bc00ae86-edae-46be-abe8-29a38d017925"
+ "99368d88-6d03-403e-99ad-a90e56703c55"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061354Z:bc00ae86-edae-46be-abe8-29a38d017925"
+ "WESTUS:20220322T061407Z:99368d88-6d03-403e-99ad-a90e56703c55"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:13:53 GMT"
+ "Tue, 22 Mar 2022 06:14:07 GMT"
],
"Expires": [
"-1"
@@ -2871,19 +3879,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2894,7 +3902,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2903,25 +3911,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2953602a-081b-41df-bf63-51fc74298fb7"
+ "f7061177-10e9-4eee-a6f4-a2aabbe73137"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11942"
],
"x-ms-correlation-request-id": [
- "077ca044-91ba-4436-bdb1-fa5f1b6cfdd1"
+ "f7061177-10e9-4eee-a6f4-a2aabbe73137"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061454Z:077ca044-91ba-4436-bdb1-fa5f1b6cfdd1"
+ "WESTUS:20220322T061508Z:f7061177-10e9-4eee-a6f4-a2aabbe73137"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:14:53 GMT"
+ "Tue, 22 Mar 2022 06:15:07 GMT"
],
"Expires": [
"-1"
@@ -2934,19 +3942,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -2957,7 +3965,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -2966,25 +3974,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "63be476c-1366-468e-9c00-a432cb5e9e9d"
+ "bea277c8-ea07-4b9c-aeb3-87335cdcbc84"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11941"
],
"x-ms-correlation-request-id": [
- "bf7a8838-c9d9-487f-9432-892406527b86"
+ "bea277c8-ea07-4b9c-aeb3-87335cdcbc84"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061554Z:bf7a8838-c9d9-487f-9432-892406527b86"
+ "WESTUS:20220322T061608Z:bea277c8-ea07-4b9c-aeb3-87335cdcbc84"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:15:54 GMT"
+ "Tue, 22 Mar 2022 06:16:08 GMT"
],
"Expires": [
"-1"
@@ -2997,19 +4005,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3020,7 +4028,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3029,25 +4037,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d1b7be0c-9409-4b6a-9fba-a68c4af70ffb"
+ "67897682-951b-473c-9737-89dfc2d9153e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11940"
],
"x-ms-correlation-request-id": [
- "2e4ebadd-0c24-4418-bad4-923523d52509"
+ "67897682-951b-473c-9737-89dfc2d9153e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061655Z:2e4ebadd-0c24-4418-bad4-923523d52509"
+ "WESTUS:20220322T061709Z:67897682-951b-473c-9737-89dfc2d9153e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:16:54 GMT"
+ "Tue, 22 Mar 2022 06:17:09 GMT"
],
"Expires": [
"-1"
@@ -3060,19 +4068,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3083,7 +4091,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3092,25 +4100,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b08c2e6c-b8ff-4617-a61f-2e532613b293"
+ "28be5edf-97da-4ad1-9d8a-39490994a2fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "11939"
],
"x-ms-correlation-request-id": [
- "b27d2220-7086-4cec-9548-0adeb76a318a"
+ "28be5edf-97da-4ad1-9d8a-39490994a2fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061755Z:b27d2220-7086-4cec-9548-0adeb76a318a"
+ "WESTUS:20220322T061809Z:28be5edf-97da-4ad1-9d8a-39490994a2fe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:17:55 GMT"
+ "Tue, 22 Mar 2022 06:18:08 GMT"
],
"Expires": [
"-1"
@@ -3123,19 +4131,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3146,7 +4154,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3155,25 +4163,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d6ef3078-995b-4046-99d0-3cfc301697c3"
+ "71fb7439-7aca-4128-a419-77a5d4ebab45"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11938"
],
"x-ms-correlation-request-id": [
- "a7c0190d-c4c1-4b38-9768-f5d8ddcad129"
+ "71fb7439-7aca-4128-a419-77a5d4ebab45"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061855Z:a7c0190d-c4c1-4b38-9768-f5d8ddcad129"
+ "WESTUS:20220322T061909Z:71fb7439-7aca-4128-a419-77a5d4ebab45"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:18:55 GMT"
+ "Tue, 22 Mar 2022 06:19:09 GMT"
],
"Expires": [
"-1"
@@ -3186,19 +4194,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3209,7 +4217,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3218,25 +4226,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e5bf7765-38f9-4791-92ad-7e1375dde3d3"
+ "4bd995fb-40f0-409d-966d-1199abbaebf6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11938"
],
"x-ms-correlation-request-id": [
- "aa4ab8f5-0632-4d67-8190-63f93e7fbf33"
+ "4bd995fb-40f0-409d-966d-1199abbaebf6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T061955Z:aa4ab8f5-0632-4d67-8190-63f93e7fbf33"
+ "WESTUS:20220322T062010Z:4bd995fb-40f0-409d-966d-1199abbaebf6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:19:55 GMT"
+ "Tue, 22 Mar 2022 06:20:09 GMT"
],
"Expires": [
"-1"
@@ -3249,19 +4257,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3272,7 +4280,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3281,25 +4289,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a29e5053-5643-4346-a7c6-1f82575779a0"
+ "47f70ebc-582f-4bc2-a44f-3bafde7b9de4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11937"
],
"x-ms-correlation-request-id": [
- "1085037d-17f1-41c5-84b8-bd8d7c739075"
+ "47f70ebc-582f-4bc2-a44f-3bafde7b9de4"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062056Z:1085037d-17f1-41c5-84b8-bd8d7c739075"
+ "WESTUS:20220322T062110Z:47f70ebc-582f-4bc2-a44f-3bafde7b9de4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:20:55 GMT"
+ "Tue, 22 Mar 2022 06:21:10 GMT"
],
"Expires": [
"-1"
@@ -3312,19 +4320,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3335,7 +4343,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3344,25 +4352,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "627792c5-6f80-4662-97f7-0b49fdf1526b"
+ "0004bab0-efbf-4eca-b8f8-0032a6c6be2e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
+ "11936"
],
"x-ms-correlation-request-id": [
- "5b53c557-7c05-40f2-91da-fdb1ffd1c289"
+ "0004bab0-efbf-4eca-b8f8-0032a6c6be2e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062156Z:5b53c557-7c05-40f2-91da-fdb1ffd1c289"
+ "WESTUS:20220322T062210Z:0004bab0-efbf-4eca-b8f8-0032a6c6be2e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:21:56 GMT"
+ "Tue, 22 Mar 2022 06:22:10 GMT"
],
"Expires": [
"-1"
@@ -3375,19 +4383,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3398,7 +4406,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3407,25 +4415,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "767d730c-a4b0-4e2b-8da4-223e7deede58"
+ "913d8814-b299-469a-be69-97016523ef87"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11935"
],
"x-ms-correlation-request-id": [
- "a157f005-fb0a-4aaf-b624-746bde33a370"
+ "913d8814-b299-469a-be69-97016523ef87"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062257Z:a157f005-fb0a-4aaf-b624-746bde33a370"
+ "WESTUS:20220322T062311Z:913d8814-b299-469a-be69-97016523ef87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:22:56 GMT"
+ "Tue, 22 Mar 2022 06:23:11 GMT"
],
"Expires": [
"-1"
@@ -3438,19 +4446,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3461,7 +4469,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3470,25 +4478,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f3f8f483-5e71-4186-b07a-facb50467751"
+ "955de13d-2f39-4d5c-9a57-e5c6109ba392"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11934"
],
"x-ms-correlation-request-id": [
- "420c1028-26c0-4147-a973-0a0414f73cc1"
+ "955de13d-2f39-4d5c-9a57-e5c6109ba392"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062357Z:420c1028-26c0-4147-a973-0a0414f73cc1"
+ "WESTUS:20220322T062411Z:955de13d-2f39-4d5c-9a57-e5c6109ba392"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:23:57 GMT"
+ "Tue, 22 Mar 2022 06:24:11 GMT"
],
"Expires": [
"-1"
@@ -3501,19 +4509,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3524,7 +4532,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3533,25 +4541,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "227c4301-02c1-437e-8f03-6e48615ab2d5"
+ "1cca9544-4055-43d0-8632-1075949aef0d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
+ "11938"
],
"x-ms-correlation-request-id": [
- "3f269366-63f5-4f16-a6c2-0684f8a5545e"
+ "1cca9544-4055-43d0-8632-1075949aef0d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062457Z:3f269366-63f5-4f16-a6c2-0684f8a5545e"
+ "WESTUS:20220322T062512Z:1cca9544-4055-43d0-8632-1075949aef0d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:24:56 GMT"
+ "Tue, 22 Mar 2022 06:25:11 GMT"
],
"Expires": [
"-1"
@@ -3564,19 +4572,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3587,7 +4595,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01"
],
"Retry-After": [
"60"
@@ -3596,25 +4604,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "95e670b4-5d15-43e9-b281-fa6ae7dadc4a"
+ "efed90a5-db51-4f3c-8d04-aacf461189d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
+ "11937"
],
"x-ms-correlation-request-id": [
- "53724189-1711-41bd-b449-670ce4e2176c"
+ "efed90a5-db51-4f3c-8d04-aacf461189d5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062557Z:53724189-1711-41bd-b449-670ce4e2176c"
+ "WESTUS:20220322T062612Z:efed90a5-db51-4f3c-8d04-aacf461189d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:25:56 GMT"
+ "Tue, 22 Mar 2022 06:26:11 GMT"
],
"Expires": [
"-1"
@@ -3627,19 +4635,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356/operationresults/ZWFzdHVzOnBzMjM1Nl9VcGRhdGVfZmMwMmE2YmM=?api-version=2021-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIzNTYvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNak0xTmw5VmNHUmhkR1ZmWm1Nd01tRTJZbU09P2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ "9b0a5712-1783-4ba9-ab60-a3758887ed07"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/8.0.0.0"
]
},
"ResponseHeaders": {
@@ -3653,28 +4661,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c640fd3b-58f8-401c-a0d8-3878e36d168f"
+ "0087657c-7486-477c-9ee6-0efe54c0c368"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11936"
],
"x-ms-correlation-request-id": [
- "312a2aac-b4d2-416c-84d2-7996c5ab76ca"
+ "0087657c-7486-477c-9ee6-0efe54c0c368"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062658Z:312a2aac-b4d2-416c-84d2-7996c5ab76ca"
+ "WESTUS:20220322T062712Z:0087657c-7486-477c-9ee6-0efe54c0c368"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:26:57 GMT"
+ "Tue, 22 Mar 2022 06:27:12 GMT"
],
"Content-Length": [
- "2835"
+ "3336"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3683,26 +4691,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959\",\r\n \"name\": \"ps8959\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAA5e+4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2021-07-15T05:34:37.0220163Z\",\r\n \"gatewayUrl\": \"https://ps8959.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8959-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8959.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8959.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8959.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8959.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8959.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.102.73.74\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.30.0.7\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"40.124.14.80\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"192.168.0.6\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://ps8959-southcentralus-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7177/providers/Microsoft.ApiManagement/service/ps2356\",\r\n \"name\": \"ps2356\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAABWzzA=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@powershell.org\",\r\n \"publisherName\": \"apimpowershellorg\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2022-03-22T05:18:39.6474389Z\",\r\n \"gatewayUrl\": \"https://ps2356.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2356-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2356.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2356.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2356.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2356.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2356.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.127.121.141\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.30.0.7\"\r\n ],\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"zones\": null,\r\n \"publicIPAddresses\": [\r\n \"20.225.128.151\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"192.168.0.6\"\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvnetscu/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"gatewayRegionalUrl\": \"https://ps2356-southcentralus-01.regional.azure-api.net\",\r\n \"publicIpAddressId\": null,\r\n \"platformVersion\": \"stv1\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.Network/virtualNetworks/powershellvneteastus/subnets/default\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null,\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null,\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-03-22T05:18:39.38231Z\",\r\n \"lastModifiedBy\": \"73510149-bc7a-47a7-828d-86345ee0fba4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-03-22T06:01:01.5701608Z\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4328?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDMyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps7177?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNzE3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d9a371e-2840-4fb7-b3ca-e06075ba7bc4"
+ "6e0fe79d-7511-4419-a39e-25c3d0f6cc8c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3713,7 +4721,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3722,13 +4730,13 @@
"14999"
],
"x-ms-request-id": [
- "06555c70-8209-4745-84c4-53f9f85f25b1"
+ "7fd5270d-372e-4527-b09e-dfffa58f3cef"
],
"x-ms-correlation-request-id": [
- "06555c70-8209-4745-84c4-53f9f85f25b1"
+ "7fd5270d-372e-4527-b09e-dfffa58f3cef"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062700Z:06555c70-8209-4745-84c4-53f9f85f25b1"
+ "WESTCENTRALUS:20220322T062716Z:7fd5270d-372e-4527-b09e-dfffa58f3cef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3737,7 +4745,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:27:00 GMT"
+ "Tue, 22 Mar 2022 06:27:16 GMT"
],
"Expires": [
"-1"
@@ -3750,16 +4758,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3770,7 +4778,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3779,13 +4787,13 @@
"11999"
],
"x-ms-request-id": [
- "0c22b383-4352-43dc-85db-c6a44917e983"
+ "2bffb4bd-b086-4964-91ce-2d70302e1204"
],
"x-ms-correlation-request-id": [
- "0c22b383-4352-43dc-85db-c6a44917e983"
+ "2bffb4bd-b086-4964-91ce-2d70302e1204"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062716Z:0c22b383-4352-43dc-85db-c6a44917e983"
+ "WESTCENTRALUS:20220322T062731Z:2bffb4bd-b086-4964-91ce-2d70302e1204"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3794,7 +4802,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:27:15 GMT"
+ "Tue, 22 Mar 2022 06:27:30 GMT"
],
"Expires": [
"-1"
@@ -3807,16 +4815,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3827,7 +4835,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3836,13 +4844,13 @@
"11998"
],
"x-ms-request-id": [
- "47d3259f-c204-4679-8b4f-4625da3d68bf"
+ "9f85d42b-c494-4657-99ef-afafe6be464e"
],
"x-ms-correlation-request-id": [
- "47d3259f-c204-4679-8b4f-4625da3d68bf"
+ "9f85d42b-c494-4657-99ef-afafe6be464e"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062731Z:47d3259f-c204-4679-8b4f-4625da3d68bf"
+ "WESTCENTRALUS:20220322T062746Z:9f85d42b-c494-4657-99ef-afafe6be464e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3851,7 +4859,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:27:30 GMT"
+ "Tue, 22 Mar 2022 06:27:46 GMT"
],
"Expires": [
"-1"
@@ -3864,16 +4872,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3884,7 +4892,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3893,13 +4901,13 @@
"11997"
],
"x-ms-request-id": [
- "fe87b978-a294-4830-819c-c4493978eb1c"
+ "f861dadc-890c-4f2a-8a7d-84ccc260bc7d"
],
"x-ms-correlation-request-id": [
- "fe87b978-a294-4830-819c-c4493978eb1c"
+ "f861dadc-890c-4f2a-8a7d-84ccc260bc7d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062746Z:fe87b978-a294-4830-819c-c4493978eb1c"
+ "WESTCENTRALUS:20220322T062801Z:f861dadc-890c-4f2a-8a7d-84ccc260bc7d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3908,7 +4916,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:27:45 GMT"
+ "Tue, 22 Mar 2022 06:28:00 GMT"
],
"Expires": [
"-1"
@@ -3921,16 +4929,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3941,7 +4949,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3950,13 +4958,13 @@
"11996"
],
"x-ms-request-id": [
- "d550e79e-9d3a-45ab-843e-f6b3be52afa6"
+ "2dcc52b5-76f0-4c8a-b325-0d09bb7c3459"
],
"x-ms-correlation-request-id": [
- "d550e79e-9d3a-45ab-843e-f6b3be52afa6"
+ "2dcc52b5-76f0-4c8a-b325-0d09bb7c3459"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062801Z:d550e79e-9d3a-45ab-843e-f6b3be52afa6"
+ "WESTCENTRALUS:20220322T062816Z:2dcc52b5-76f0-4c8a-b325-0d09bb7c3459"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3965,7 +4973,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:28:01 GMT"
+ "Tue, 22 Mar 2022 06:28:16 GMT"
],
"Expires": [
"-1"
@@ -3978,16 +4986,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -3998,7 +5006,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4007,13 +5015,13 @@
"11995"
],
"x-ms-request-id": [
- "d99078b0-3cde-4015-aa50-9737effc20a0"
+ "2bcb33e4-befd-42aa-bb36-c978f7236b13"
],
"x-ms-correlation-request-id": [
- "d99078b0-3cde-4015-aa50-9737effc20a0"
+ "2bcb33e4-befd-42aa-bb36-c978f7236b13"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062816Z:d99078b0-3cde-4015-aa50-9737effc20a0"
+ "WESTCENTRALUS:20220322T062831Z:2bcb33e4-befd-42aa-bb36-c978f7236b13"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4022,7 +5030,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:28:16 GMT"
+ "Tue, 22 Mar 2022 06:28:31 GMT"
],
"Expires": [
"-1"
@@ -4035,16 +5043,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4055,7 +5063,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4064,13 +5072,13 @@
"11994"
],
"x-ms-request-id": [
- "b4179083-6121-409e-8326-664d8d165eb9"
+ "ac49c036-5c16-42c6-9bd6-bc8e091f19af"
],
"x-ms-correlation-request-id": [
- "b4179083-6121-409e-8326-664d8d165eb9"
+ "ac49c036-5c16-42c6-9bd6-bc8e091f19af"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062831Z:b4179083-6121-409e-8326-664d8d165eb9"
+ "WESTCENTRALUS:20220322T062846Z:ac49c036-5c16-42c6-9bd6-bc8e091f19af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4079,7 +5087,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:28:31 GMT"
+ "Tue, 22 Mar 2022 06:28:46 GMT"
],
"Expires": [
"-1"
@@ -4092,16 +5100,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4112,7 +5120,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4121,13 +5129,13 @@
"11993"
],
"x-ms-request-id": [
- "68b93388-60c4-433a-8ffd-4603a1c5f5b3"
+ "d87e3c7d-e68b-47fd-a64b-3fc25fa432cf"
],
"x-ms-correlation-request-id": [
- "68b93388-60c4-433a-8ffd-4603a1c5f5b3"
+ "d87e3c7d-e68b-47fd-a64b-3fc25fa432cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062847Z:68b93388-60c4-433a-8ffd-4603a1c5f5b3"
+ "WESTCENTRALUS:20220322T062902Z:d87e3c7d-e68b-47fd-a64b-3fc25fa432cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4136,7 +5144,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:28:46 GMT"
+ "Tue, 22 Mar 2022 06:29:02 GMT"
],
"Expires": [
"-1"
@@ -4149,16 +5157,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4169,7 +5177,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4178,13 +5186,13 @@
"11992"
],
"x-ms-request-id": [
- "17f4971c-6673-44d9-8431-47b37371e3b6"
+ "d762efcb-254a-4c0d-89ca-2f715c652f39"
],
"x-ms-correlation-request-id": [
- "17f4971c-6673-44d9-8431-47b37371e3b6"
+ "d762efcb-254a-4c0d-89ca-2f715c652f39"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062902Z:17f4971c-6673-44d9-8431-47b37371e3b6"
+ "WESTCENTRALUS:20220322T062917Z:d762efcb-254a-4c0d-89ca-2f715c652f39"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4193,7 +5201,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:29:01 GMT"
+ "Tue, 22 Mar 2022 06:29:16 GMT"
],
"Expires": [
"-1"
@@ -4206,16 +5214,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4226,7 +5234,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4235,13 +5243,13 @@
"11991"
],
"x-ms-request-id": [
- "8f32a928-235b-47cd-b6df-5712883bc23d"
+ "0572c95f-fdd8-4cf2-afea-ab005e24e0a2"
],
"x-ms-correlation-request-id": [
- "8f32a928-235b-47cd-b6df-5712883bc23d"
+ "0572c95f-fdd8-4cf2-afea-ab005e24e0a2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062917Z:8f32a928-235b-47cd-b6df-5712883bc23d"
+ "WESTCENTRALUS:20220322T062932Z:0572c95f-fdd8-4cf2-afea-ab005e24e0a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4250,7 +5258,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:29:16 GMT"
+ "Tue, 22 Mar 2022 06:29:31 GMT"
],
"Expires": [
"-1"
@@ -4263,16 +5271,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4283,7 +5291,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4292,13 +5300,13 @@
"11990"
],
"x-ms-request-id": [
- "9fad46ab-07d9-45f7-937b-43d8deedace7"
+ "750bcc27-1646-4995-825d-b6705510ba1b"
],
"x-ms-correlation-request-id": [
- "9fad46ab-07d9-45f7-937b-43d8deedace7"
+ "750bcc27-1646-4995-825d-b6705510ba1b"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062932Z:9fad46ab-07d9-45f7-937b-43d8deedace7"
+ "WESTCENTRALUS:20220322T062947Z:750bcc27-1646-4995-825d-b6705510ba1b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4307,7 +5315,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:29:32 GMT"
+ "Tue, 22 Mar 2022 06:29:47 GMT"
],
"Expires": [
"-1"
@@ -4320,16 +5328,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4340,7 +5348,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4349,13 +5357,13 @@
"11989"
],
"x-ms-request-id": [
- "9c49e7f5-0dfc-42c6-8c19-3ba0543831bb"
+ "3c8253a3-d2fe-48a5-94de-681dad14043a"
],
"x-ms-correlation-request-id": [
- "9c49e7f5-0dfc-42c6-8c19-3ba0543831bb"
+ "3c8253a3-d2fe-48a5-94de-681dad14043a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T062947Z:9c49e7f5-0dfc-42c6-8c19-3ba0543831bb"
+ "WESTCENTRALUS:20220322T063002Z:3c8253a3-d2fe-48a5-94de-681dad14043a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4364,7 +5372,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:29:47 GMT"
+ "Tue, 22 Mar 2022 06:30:01 GMT"
],
"Expires": [
"-1"
@@ -4377,16 +5385,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4397,7 +5405,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4406,13 +5414,13 @@
"11988"
],
"x-ms-request-id": [
- "9effac68-0a26-43f6-8a7f-63bb173f2ec9"
+ "761568f7-27bc-4db4-99d4-a3bf24cc46a2"
],
"x-ms-correlation-request-id": [
- "9effac68-0a26-43f6-8a7f-63bb173f2ec9"
+ "761568f7-27bc-4db4-99d4-a3bf24cc46a2"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063002Z:9effac68-0a26-43f6-8a7f-63bb173f2ec9"
+ "WESTCENTRALUS:20220322T063017Z:761568f7-27bc-4db4-99d4-a3bf24cc46a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4421,7 +5429,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:30:02 GMT"
+ "Tue, 22 Mar 2022 06:30:17 GMT"
],
"Expires": [
"-1"
@@ -4434,16 +5442,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4454,7 +5462,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4463,13 +5471,13 @@
"11987"
],
"x-ms-request-id": [
- "5b2d0a60-abcb-498e-8298-57a5e549e1fa"
+ "df8d48c2-752e-4ca8-8df3-1ef717f70d47"
],
"x-ms-correlation-request-id": [
- "5b2d0a60-abcb-498e-8298-57a5e549e1fa"
+ "df8d48c2-752e-4ca8-8df3-1ef717f70d47"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063018Z:5b2d0a60-abcb-498e-8298-57a5e549e1fa"
+ "WESTCENTRALUS:20220322T063032Z:df8d48c2-752e-4ca8-8df3-1ef717f70d47"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4478,7 +5486,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:30:17 GMT"
+ "Tue, 22 Mar 2022 06:30:32 GMT"
],
"Expires": [
"-1"
@@ -4491,16 +5499,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4511,7 +5519,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4520,13 +5528,13 @@
"11986"
],
"x-ms-request-id": [
- "682a6039-ec1c-4982-a4da-c38352c1f40f"
+ "0a39b1f2-ddd2-4383-84ee-114e97e75688"
],
"x-ms-correlation-request-id": [
- "682a6039-ec1c-4982-a4da-c38352c1f40f"
+ "0a39b1f2-ddd2-4383-84ee-114e97e75688"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063033Z:682a6039-ec1c-4982-a4da-c38352c1f40f"
+ "WESTCENTRALUS:20220322T063047Z:0a39b1f2-ddd2-4383-84ee-114e97e75688"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4535,7 +5543,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:30:32 GMT"
+ "Tue, 22 Mar 2022 06:30:47 GMT"
],
"Expires": [
"-1"
@@ -4548,16 +5556,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4568,7 +5576,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4577,13 +5585,13 @@
"11985"
],
"x-ms-request-id": [
- "c363b81f-d00b-4e7d-a817-0d7371899389"
+ "ad575e88-b361-43e3-89f2-2d78b6208754"
],
"x-ms-correlation-request-id": [
- "c363b81f-d00b-4e7d-a817-0d7371899389"
+ "ad575e88-b361-43e3-89f2-2d78b6208754"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063048Z:c363b81f-d00b-4e7d-a817-0d7371899389"
+ "WESTCENTRALUS:20220322T063103Z:ad575e88-b361-43e3-89f2-2d78b6208754"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4592,7 +5600,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:30:47 GMT"
+ "Tue, 22 Mar 2022 06:31:02 GMT"
],
"Expires": [
"-1"
@@ -4605,16 +5613,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4625,7 +5633,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4634,13 +5642,13 @@
"11984"
],
"x-ms-request-id": [
- "0f188a29-1db6-4c2d-b118-23e8d1f0aacc"
+ "b6dcdb75-ac78-4843-ac2b-0792a8541475"
],
"x-ms-correlation-request-id": [
- "0f188a29-1db6-4c2d-b118-23e8d1f0aacc"
+ "b6dcdb75-ac78-4843-ac2b-0792a8541475"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063103Z:0f188a29-1db6-4c2d-b118-23e8d1f0aacc"
+ "WESTCENTRALUS:20220322T063118Z:b6dcdb75-ac78-4843-ac2b-0792a8541475"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4649,7 +5657,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:31:02 GMT"
+ "Tue, 22 Mar 2022 06:31:17 GMT"
],
"Expires": [
"-1"
@@ -4662,16 +5670,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4682,7 +5690,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4691,13 +5699,13 @@
"11983"
],
"x-ms-request-id": [
- "ed03366a-2b38-414a-8fef-18bac7332aa4"
+ "7654a0cb-ff5c-438d-bec4-486ca2a0ba20"
],
"x-ms-correlation-request-id": [
- "ed03366a-2b38-414a-8fef-18bac7332aa4"
+ "7654a0cb-ff5c-438d-bec4-486ca2a0ba20"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063118Z:ed03366a-2b38-414a-8fef-18bac7332aa4"
+ "WESTCENTRALUS:20220322T063133Z:7654a0cb-ff5c-438d-bec4-486ca2a0ba20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4706,7 +5714,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:31:18 GMT"
+ "Tue, 22 Mar 2022 06:31:32 GMT"
],
"Expires": [
"-1"
@@ -4719,16 +5727,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4739,7 +5747,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4748,13 +5756,13 @@
"11982"
],
"x-ms-request-id": [
- "30ce99d9-c5c7-4d66-b804-646278e27caa"
+ "bc0849bf-f5da-4f1a-8f47-524903255352"
],
"x-ms-correlation-request-id": [
- "30ce99d9-c5c7-4d66-b804-646278e27caa"
+ "bc0849bf-f5da-4f1a-8f47-524903255352"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063133Z:30ce99d9-c5c7-4d66-b804-646278e27caa"
+ "WESTCENTRALUS:20220322T063148Z:bc0849bf-f5da-4f1a-8f47-524903255352"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4763,7 +5771,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:31:33 GMT"
+ "Tue, 22 Mar 2022 06:31:48 GMT"
],
"Expires": [
"-1"
@@ -4776,16 +5784,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4796,7 +5804,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4805,13 +5813,13 @@
"11981"
],
"x-ms-request-id": [
- "b6785a55-6e72-4e71-a32f-bed7bac97214"
+ "d740690b-98f2-4b4f-8c20-72075046ad3a"
],
"x-ms-correlation-request-id": [
- "b6785a55-6e72-4e71-a32f-bed7bac97214"
+ "d740690b-98f2-4b4f-8c20-72075046ad3a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063149Z:b6785a55-6e72-4e71-a32f-bed7bac97214"
+ "WESTCENTRALUS:20220322T063203Z:d740690b-98f2-4b4f-8c20-72075046ad3a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4820,7 +5828,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:31:48 GMT"
+ "Tue, 22 Mar 2022 06:32:02 GMT"
],
"Expires": [
"-1"
@@ -4833,16 +5841,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4853,7 +5861,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4862,13 +5870,13 @@
"11980"
],
"x-ms-request-id": [
- "7cee2aa9-339e-45e9-aa2e-67d5f8374a6b"
+ "9becc5f9-7043-43d5-ba06-3ba2073ae57d"
],
"x-ms-correlation-request-id": [
- "7cee2aa9-339e-45e9-aa2e-67d5f8374a6b"
+ "9becc5f9-7043-43d5-ba06-3ba2073ae57d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063204Z:7cee2aa9-339e-45e9-aa2e-67d5f8374a6b"
+ "WESTCENTRALUS:20220322T063218Z:9becc5f9-7043-43d5-ba06-3ba2073ae57d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4877,7 +5885,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:32:04 GMT"
+ "Tue, 22 Mar 2022 06:32:17 GMT"
],
"Expires": [
"-1"
@@ -4890,16 +5898,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4910,7 +5918,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4919,13 +5927,13 @@
"11979"
],
"x-ms-request-id": [
- "d4fa8157-e3d3-4b30-a8d1-91d7ae99f7a3"
+ "138103e9-5f69-4813-8ffb-184a217a0519"
],
"x-ms-correlation-request-id": [
- "d4fa8157-e3d3-4b30-a8d1-91d7ae99f7a3"
+ "138103e9-5f69-4813-8ffb-184a217a0519"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063219Z:d4fa8157-e3d3-4b30-a8d1-91d7ae99f7a3"
+ "WESTCENTRALUS:20220322T063233Z:138103e9-5f69-4813-8ffb-184a217a0519"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4934,7 +5942,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:32:19 GMT"
+ "Tue, 22 Mar 2022 06:32:33 GMT"
],
"Expires": [
"-1"
@@ -4947,16 +5955,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -4967,7 +5975,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4976,13 +5984,13 @@
"11978"
],
"x-ms-request-id": [
- "7a7951d8-ba3f-4699-9973-8bd09112eff9"
+ "5dba5685-ba0d-413f-a046-e14f7d6ee687"
],
"x-ms-correlation-request-id": [
- "7a7951d8-ba3f-4699-9973-8bd09112eff9"
+ "5dba5685-ba0d-413f-a046-e14f7d6ee687"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063234Z:7a7951d8-ba3f-4699-9973-8bd09112eff9"
+ "WESTCENTRALUS:20220322T063249Z:5dba5685-ba0d-413f-a046-e14f7d6ee687"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4991,7 +5999,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:32:34 GMT"
+ "Tue, 22 Mar 2022 06:32:48 GMT"
],
"Expires": [
"-1"
@@ -5004,16 +6012,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5024,7 +6032,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5033,13 +6041,13 @@
"11977"
],
"x-ms-request-id": [
- "90317091-86b9-4ef6-b162-6b81a28fdd38"
+ "91f3d430-16a8-4a3c-b3a2-123274bd38b6"
],
"x-ms-correlation-request-id": [
- "90317091-86b9-4ef6-b162-6b81a28fdd38"
+ "91f3d430-16a8-4a3c-b3a2-123274bd38b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063249Z:90317091-86b9-4ef6-b162-6b81a28fdd38"
+ "WESTCENTRALUS:20220322T063304Z:91f3d430-16a8-4a3c-b3a2-123274bd38b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5048,7 +6056,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:32:49 GMT"
+ "Tue, 22 Mar 2022 06:33:04 GMT"
],
"Expires": [
"-1"
@@ -5061,16 +6069,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5081,7 +6089,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5090,13 +6098,13 @@
"11976"
],
"x-ms-request-id": [
- "72503549-d50e-4332-8874-e97e3aaba622"
+ "42f2af6c-5bdd-424d-8174-2f4f6be05dea"
],
"x-ms-correlation-request-id": [
- "72503549-d50e-4332-8874-e97e3aaba622"
+ "42f2af6c-5bdd-424d-8174-2f4f6be05dea"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063305Z:72503549-d50e-4332-8874-e97e3aaba622"
+ "WESTCENTRALUS:20220322T063319Z:42f2af6c-5bdd-424d-8174-2f4f6be05dea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5105,7 +6113,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:33:04 GMT"
+ "Tue, 22 Mar 2022 06:33:19 GMT"
],
"Expires": [
"-1"
@@ -5118,16 +6126,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5138,7 +6146,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5147,13 +6155,13 @@
"11975"
],
"x-ms-request-id": [
- "006af3ec-64b5-4c45-a405-b4332d097c29"
+ "2afcb996-0344-49bc-badf-ead86b28bc9d"
],
"x-ms-correlation-request-id": [
- "006af3ec-64b5-4c45-a405-b4332d097c29"
+ "2afcb996-0344-49bc-badf-ead86b28bc9d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063320Z:006af3ec-64b5-4c45-a405-b4332d097c29"
+ "WESTCENTRALUS:20220322T063334Z:2afcb996-0344-49bc-badf-ead86b28bc9d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5162,7 +6170,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:33:19 GMT"
+ "Tue, 22 Mar 2022 06:33:33 GMT"
],
"Expires": [
"-1"
@@ -5175,16 +6183,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5195,7 +6203,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5204,13 +6212,13 @@
"11974"
],
"x-ms-request-id": [
- "1956f77c-9d25-457b-b14c-43d57f4ce51f"
+ "ace0f457-4886-433d-8be8-4d7ee99da911"
],
"x-ms-correlation-request-id": [
- "1956f77c-9d25-457b-b14c-43d57f4ce51f"
+ "ace0f457-4886-433d-8be8-4d7ee99da911"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063335Z:1956f77c-9d25-457b-b14c-43d57f4ce51f"
+ "WESTCENTRALUS:20220322T063349Z:ace0f457-4886-433d-8be8-4d7ee99da911"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5219,7 +6227,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:33:35 GMT"
+ "Tue, 22 Mar 2022 06:33:48 GMT"
],
"Expires": [
"-1"
@@ -5232,16 +6240,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5252,7 +6260,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5261,13 +6269,13 @@
"11973"
],
"x-ms-request-id": [
- "a34271a7-5bc7-4f68-b362-7a9cf1b44441"
+ "861565f0-b5dd-4b5e-b54d-f338a6ca36ca"
],
"x-ms-correlation-request-id": [
- "a34271a7-5bc7-4f68-b362-7a9cf1b44441"
+ "861565f0-b5dd-4b5e-b54d-f338a6ca36ca"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063350Z:a34271a7-5bc7-4f68-b362-7a9cf1b44441"
+ "WESTCENTRALUS:20220322T063404Z:861565f0-b5dd-4b5e-b54d-f338a6ca36ca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5276,7 +6284,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:33:50 GMT"
+ "Tue, 22 Mar 2022 06:34:03 GMT"
],
"Expires": [
"-1"
@@ -5289,16 +6297,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5309,7 +6317,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5318,13 +6326,13 @@
"11972"
],
"x-ms-request-id": [
- "09a8017b-14c9-4803-825e-c6fd28af3a2e"
+ "ee2b557d-4e46-4026-88d6-6d51c4bcc7e8"
],
"x-ms-correlation-request-id": [
- "09a8017b-14c9-4803-825e-c6fd28af3a2e"
+ "ee2b557d-4e46-4026-88d6-6d51c4bcc7e8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063405Z:09a8017b-14c9-4803-825e-c6fd28af3a2e"
+ "WESTCENTRALUS:20220322T063419Z:ee2b557d-4e46-4026-88d6-6d51c4bcc7e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5333,7 +6341,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:34:05 GMT"
+ "Tue, 22 Mar 2022 06:34:19 GMT"
],
"Expires": [
"-1"
@@ -5346,16 +6354,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5366,7 +6374,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5375,13 +6383,13 @@
"11971"
],
"x-ms-request-id": [
- "c585c4f9-0a50-4588-9dc3-843f6f5cd8d4"
+ "a35faf16-8a7c-4705-b4a0-91fd71ec79f7"
],
"x-ms-correlation-request-id": [
- "c585c4f9-0a50-4588-9dc3-843f6f5cd8d4"
+ "a35faf16-8a7c-4705-b4a0-91fd71ec79f7"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063421Z:c585c4f9-0a50-4588-9dc3-843f6f5cd8d4"
+ "WESTCENTRALUS:20220322T063435Z:a35faf16-8a7c-4705-b4a0-91fd71ec79f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5390,7 +6398,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:34:20 GMT"
+ "Tue, 22 Mar 2022 06:34:34 GMT"
],
"Expires": [
"-1"
@@ -5403,16 +6411,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5423,7 +6431,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5432,13 +6440,13 @@
"11970"
],
"x-ms-request-id": [
- "83264a42-5dae-4921-b600-35f05a27d685"
+ "eb76e13e-56e8-4119-a984-6e308259cc79"
],
"x-ms-correlation-request-id": [
- "83264a42-5dae-4921-b600-35f05a27d685"
+ "eb76e13e-56e8-4119-a984-6e308259cc79"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063436Z:83264a42-5dae-4921-b600-35f05a27d685"
+ "WESTCENTRALUS:20220322T063450Z:eb76e13e-56e8-4119-a984-6e308259cc79"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5447,7 +6455,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:34:35 GMT"
+ "Tue, 22 Mar 2022 06:34:49 GMT"
],
"Expires": [
"-1"
@@ -5460,16 +6468,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5480,7 +6488,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5489,13 +6497,13 @@
"11969"
],
"x-ms-request-id": [
- "b3681caa-70b2-42af-a5a7-67a001b09134"
+ "85b9413d-b4bf-4b61-9d51-c4f4df52e3f6"
],
"x-ms-correlation-request-id": [
- "b3681caa-70b2-42af-a5a7-67a001b09134"
+ "85b9413d-b4bf-4b61-9d51-c4f4df52e3f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063451Z:b3681caa-70b2-42af-a5a7-67a001b09134"
+ "WESTCENTRALUS:20220322T063505Z:85b9413d-b4bf-4b61-9d51-c4f4df52e3f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5504,7 +6512,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:34:51 GMT"
+ "Tue, 22 Mar 2022 06:35:05 GMT"
],
"Expires": [
"-1"
@@ -5517,16 +6525,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5537,7 +6545,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5546,13 +6554,13 @@
"11968"
],
"x-ms-request-id": [
- "fa9fd3c4-c5d3-40bc-a3d1-3421da047fea"
+ "1796506b-7369-41f6-b21d-8dc12367dfa5"
],
"x-ms-correlation-request-id": [
- "fa9fd3c4-c5d3-40bc-a3d1-3421da047fea"
+ "1796506b-7369-41f6-b21d-8dc12367dfa5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063506Z:fa9fd3c4-c5d3-40bc-a3d1-3421da047fea"
+ "WESTCENTRALUS:20220322T063520Z:1796506b-7369-41f6-b21d-8dc12367dfa5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5561,7 +6569,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:35:06 GMT"
+ "Tue, 22 Mar 2022 06:35:19 GMT"
],
"Expires": [
"-1"
@@ -5574,16 +6582,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5594,7 +6602,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5603,13 +6611,13 @@
"11967"
],
"x-ms-request-id": [
- "618a432b-1856-4c56-8085-ff000a934145"
+ "db2a8a32-48d0-457d-a086-dd1e90de9272"
],
"x-ms-correlation-request-id": [
- "618a432b-1856-4c56-8085-ff000a934145"
+ "db2a8a32-48d0-457d-a086-dd1e90de9272"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063521Z:618a432b-1856-4c56-8085-ff000a934145"
+ "WESTCENTRALUS:20220322T063535Z:db2a8a32-48d0-457d-a086-dd1e90de9272"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5618,7 +6626,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:35:21 GMT"
+ "Tue, 22 Mar 2022 06:35:34 GMT"
],
"Expires": [
"-1"
@@ -5631,16 +6639,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5651,7 +6659,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5660,13 +6668,13 @@
"11966"
],
"x-ms-request-id": [
- "4d2e3d61-774d-43f9-b690-3997e1fee183"
+ "897d3c2a-4f2e-4083-b068-eb14dbaea97d"
],
"x-ms-correlation-request-id": [
- "4d2e3d61-774d-43f9-b690-3997e1fee183"
+ "897d3c2a-4f2e-4083-b068-eb14dbaea97d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063536Z:4d2e3d61-774d-43f9-b690-3997e1fee183"
+ "WESTCENTRALUS:20220322T063550Z:897d3c2a-4f2e-4083-b068-eb14dbaea97d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5675,7 +6683,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:35:36 GMT"
+ "Tue, 22 Mar 2022 06:35:50 GMT"
],
"Expires": [
"-1"
@@ -5688,16 +6696,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5708,7 +6716,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5717,13 +6725,13 @@
"11965"
],
"x-ms-request-id": [
- "564d7eaa-4949-41c4-bdbc-b7d0a7b1adb9"
+ "05917cd9-e99d-4a99-88fa-9efe8f6ba42c"
],
"x-ms-correlation-request-id": [
- "564d7eaa-4949-41c4-bdbc-b7d0a7b1adb9"
+ "05917cd9-e99d-4a99-88fa-9efe8f6ba42c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063552Z:564d7eaa-4949-41c4-bdbc-b7d0a7b1adb9"
+ "WESTCENTRALUS:20220322T063605Z:05917cd9-e99d-4a99-88fa-9efe8f6ba42c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5732,7 +6740,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:35:51 GMT"
+ "Tue, 22 Mar 2022 06:36:05 GMT"
],
"Expires": [
"-1"
@@ -5745,16 +6753,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5765,7 +6773,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5774,13 +6782,13 @@
"11964"
],
"x-ms-request-id": [
- "705942a4-b70b-4d1d-b78f-3945323f88f8"
+ "a47efc1f-d129-4cfd-a539-6b9c4e892a6c"
],
"x-ms-correlation-request-id": [
- "705942a4-b70b-4d1d-b78f-3945323f88f8"
+ "a47efc1f-d129-4cfd-a539-6b9c4e892a6c"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063607Z:705942a4-b70b-4d1d-b78f-3945323f88f8"
+ "WESTCENTRALUS:20220322T063620Z:a47efc1f-d129-4cfd-a539-6b9c4e892a6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5789,7 +6797,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:36:06 GMT"
+ "Tue, 22 Mar 2022 06:36:20 GMT"
],
"Expires": [
"-1"
@@ -5802,16 +6810,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5822,7 +6830,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5831,13 +6839,13 @@
"11963"
],
"x-ms-request-id": [
- "38eb015f-1e92-4c5d-86bb-95daba1b2c58"
+ "0b665e0a-9754-4389-9eac-8bb98d159720"
],
"x-ms-correlation-request-id": [
- "38eb015f-1e92-4c5d-86bb-95daba1b2c58"
+ "0b665e0a-9754-4389-9eac-8bb98d159720"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063622Z:38eb015f-1e92-4c5d-86bb-95daba1b2c58"
+ "WESTCENTRALUS:20220322T063636Z:0b665e0a-9754-4389-9eac-8bb98d159720"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5846,7 +6854,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:36:22 GMT"
+ "Tue, 22 Mar 2022 06:36:35 GMT"
],
"Expires": [
"-1"
@@ -5859,16 +6867,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5879,7 +6887,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5888,13 +6896,13 @@
"11962"
],
"x-ms-request-id": [
- "30c42366-e791-4998-8582-c752b090cd16"
+ "68973b67-8548-4ddb-b1fa-4144054a49a8"
],
"x-ms-correlation-request-id": [
- "30c42366-e791-4998-8582-c752b090cd16"
+ "68973b67-8548-4ddb-b1fa-4144054a49a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063637Z:30c42366-e791-4998-8582-c752b090cd16"
+ "WESTCENTRALUS:20220322T063651Z:68973b67-8548-4ddb-b1fa-4144054a49a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5903,7 +6911,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:36:37 GMT"
+ "Tue, 22 Mar 2022 06:36:50 GMT"
],
"Expires": [
"-1"
@@ -5916,16 +6924,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5936,7 +6944,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5945,13 +6953,13 @@
"11961"
],
"x-ms-request-id": [
- "c31215ef-efec-4db8-a988-56c8a51842be"
+ "8dda5d22-4609-4d2f-adf3-26d7cbeed380"
],
"x-ms-correlation-request-id": [
- "c31215ef-efec-4db8-a988-56c8a51842be"
+ "8dda5d22-4609-4d2f-adf3-26d7cbeed380"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063652Z:c31215ef-efec-4db8-a988-56c8a51842be"
+ "WESTCENTRALUS:20220322T063706Z:8dda5d22-4609-4d2f-adf3-26d7cbeed380"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5960,7 +6968,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:36:52 GMT"
+ "Tue, 22 Mar 2022 06:37:05 GMT"
],
"Expires": [
"-1"
@@ -5973,16 +6981,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -5993,7 +7001,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6002,13 +7010,13 @@
"11960"
],
"x-ms-request-id": [
- "7ad60ab9-ef2a-4490-ac33-312f19693e85"
+ "89a4935a-2be8-4d6a-ba65-01e922678de8"
],
"x-ms-correlation-request-id": [
- "7ad60ab9-ef2a-4490-ac33-312f19693e85"
+ "89a4935a-2be8-4d6a-ba65-01e922678de8"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063708Z:7ad60ab9-ef2a-4490-ac33-312f19693e85"
+ "WESTCENTRALUS:20220322T063721Z:89a4935a-2be8-4d6a-ba65-01e922678de8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6017,7 +7025,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:37:07 GMT"
+ "Tue, 22 Mar 2022 06:37:20 GMT"
],
"Expires": [
"-1"
@@ -6030,16 +7038,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6050,7 +7058,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6059,13 +7067,13 @@
"11959"
],
"x-ms-request-id": [
- "40ef71eb-6fa2-4b79-90ac-1be433912f1b"
+ "b847ce1b-b7b9-4a49-857b-d0fb40b4a640"
],
"x-ms-correlation-request-id": [
- "40ef71eb-6fa2-4b79-90ac-1be433912f1b"
+ "b847ce1b-b7b9-4a49-857b-d0fb40b4a640"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063723Z:40ef71eb-6fa2-4b79-90ac-1be433912f1b"
+ "WESTCENTRALUS:20220322T063736Z:b847ce1b-b7b9-4a49-857b-d0fb40b4a640"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6074,7 +7082,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:37:22 GMT"
+ "Tue, 22 Mar 2022 06:37:36 GMT"
],
"Expires": [
"-1"
@@ -6087,16 +7095,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6107,7 +7115,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6116,13 +7124,13 @@
"11958"
],
"x-ms-request-id": [
- "c69304d2-fca2-4c04-80ab-ab5a77427dcc"
+ "c2909dd7-116f-47b6-9d0d-080c26a94f46"
],
"x-ms-correlation-request-id": [
- "c69304d2-fca2-4c04-80ab-ab5a77427dcc"
+ "c2909dd7-116f-47b6-9d0d-080c26a94f46"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063738Z:c69304d2-fca2-4c04-80ab-ab5a77427dcc"
+ "WESTCENTRALUS:20220322T063751Z:c2909dd7-116f-47b6-9d0d-080c26a94f46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6131,7 +7139,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:37:38 GMT"
+ "Tue, 22 Mar 2022 06:37:51 GMT"
],
"Expires": [
"-1"
@@ -6144,16 +7152,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6164,7 +7172,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6173,13 +7181,13 @@
"11957"
],
"x-ms-request-id": [
- "d9ac70b2-fbc4-4c05-91e7-e629851ad4c5"
+ "8610c028-2545-461f-af9a-642eba286a9a"
],
"x-ms-correlation-request-id": [
- "d9ac70b2-fbc4-4c05-91e7-e629851ad4c5"
+ "8610c028-2545-461f-af9a-642eba286a9a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063753Z:d9ac70b2-fbc4-4c05-91e7-e629851ad4c5"
+ "WESTCENTRALUS:20220322T063806Z:8610c028-2545-461f-af9a-642eba286a9a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6188,7 +7196,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:37:53 GMT"
+ "Tue, 22 Mar 2022 06:38:06 GMT"
],
"Expires": [
"-1"
@@ -6201,16 +7209,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6221,7 +7229,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6230,13 +7238,13 @@
"11956"
],
"x-ms-request-id": [
- "2ede5198-444f-4e2f-8e22-0b07b1784288"
+ "da2db30a-dc9e-492e-b848-943f78a8903d"
],
"x-ms-correlation-request-id": [
- "2ede5198-444f-4e2f-8e22-0b07b1784288"
+ "da2db30a-dc9e-492e-b848-943f78a8903d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063808Z:2ede5198-444f-4e2f-8e22-0b07b1784288"
+ "WESTCENTRALUS:20220322T063822Z:da2db30a-dc9e-492e-b848-943f78a8903d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6245,7 +7253,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:38:08 GMT"
+ "Tue, 22 Mar 2022 06:38:21 GMT"
],
"Expires": [
"-1"
@@ -6258,16 +7266,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6278,7 +7286,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6287,13 +7295,13 @@
"11955"
],
"x-ms-request-id": [
- "2fb9c80c-9ba9-4ef8-ab10-624072a7b4f9"
+ "040ef461-d339-4fe5-b411-1a7b449191ea"
],
"x-ms-correlation-request-id": [
- "2fb9c80c-9ba9-4ef8-ab10-624072a7b4f9"
+ "040ef461-d339-4fe5-b411-1a7b449191ea"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063823Z:2fb9c80c-9ba9-4ef8-ab10-624072a7b4f9"
+ "WESTCENTRALUS:20220322T063837Z:040ef461-d339-4fe5-b411-1a7b449191ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6302,7 +7310,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:38:23 GMT"
+ "Tue, 22 Mar 2022 06:38:37 GMT"
],
"Expires": [
"-1"
@@ -6315,16 +7323,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6335,7 +7343,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6344,13 +7352,13 @@
"11954"
],
"x-ms-request-id": [
- "ac1f7e99-72c6-4fe2-8dd0-265768a7b8dd"
+ "0b8884a9-3f69-4f93-9428-dd36c48fa37a"
],
"x-ms-correlation-request-id": [
- "ac1f7e99-72c6-4fe2-8dd0-265768a7b8dd"
+ "0b8884a9-3f69-4f93-9428-dd36c48fa37a"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063839Z:ac1f7e99-72c6-4fe2-8dd0-265768a7b8dd"
+ "WESTCENTRALUS:20220322T063852Z:0b8884a9-3f69-4f93-9428-dd36c48fa37a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6359,7 +7367,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:38:38 GMT"
+ "Tue, 22 Mar 2022 06:38:51 GMT"
],
"Expires": [
"-1"
@@ -6372,16 +7380,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6392,7 +7400,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6401,13 +7409,13 @@
"11953"
],
"x-ms-request-id": [
- "69e031e0-0c74-4636-9922-3d7c913cfe09"
+ "6f4ddec0-8f56-4faf-9452-834a25b78cf5"
],
"x-ms-correlation-request-id": [
- "69e031e0-0c74-4636-9922-3d7c913cfe09"
+ "6f4ddec0-8f56-4faf-9452-834a25b78cf5"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063854Z:69e031e0-0c74-4636-9922-3d7c913cfe09"
+ "WESTCENTRALUS:20220322T063907Z:6f4ddec0-8f56-4faf-9452-834a25b78cf5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6416,7 +7424,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:38:53 GMT"
+ "Tue, 22 Mar 2022 06:39:07 GMT"
],
"Expires": [
"-1"
@@ -6429,16 +7437,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6448,131 +7456,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11952"
],
"x-ms-request-id": [
- "e837c7b9-9f18-4fe4-b4ee-3ae9a4e425e0"
- ],
- "x-ms-correlation-request-id": [
- "e837c7b9-9f18-4fe4-b4ee-3ae9a4e425e0"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T063909Z:e837c7b9-9f18-4fe4-b4ee-3ae9a4e425e0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 06:39:08 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
- ],
- "x-ms-request-id": [
- "9306adb2-3d38-40ee-b6ac-e9ee299ddcc1"
- ],
- "x-ms-correlation-request-id": [
- "9306adb2-3d38-40ee-b6ac-e9ee299ddcc1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20210715T063924Z:9306adb2-3d38-40ee-b6ac-e9ee299ddcc1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Thu, 15 Jul 2021 06:39:23 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.30015.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
- ],
- "x-ms-request-id": [
- "a1764c95-43f3-403b-bb28-af195f53ee7d"
+ "aa6ff6df-13f2-4036-bcd0-4894255db26d"
],
"x-ms-correlation-request-id": [
- "a1764c95-43f3-403b-bb28-af195f53ee7d"
+ "aa6ff6df-13f2-4036-bcd0-4894255db26d"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063939Z:a1764c95-43f3-403b-bb28-af195f53ee7d"
+ "WESTCENTRALUS:20220322T063922Z:aa6ff6df-13f2-4036-bcd0-4894255db26d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6581,7 +7475,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:39:38 GMT"
+ "Tue, 22 Mar 2022 06:39:22 GMT"
],
"Expires": [
"-1"
@@ -6594,16 +7488,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1qZ3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.30015.01",
+ "FxVersion/4.700.22.11601",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19043.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56"
]
},
"ResponseHeaders": {
@@ -6614,16 +7508,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11951"
],
"x-ms-request-id": [
- "bcf8dc7f-022b-43e6-860c-00571b5ba638"
+ "2605b41a-ef68-4a53-9351-deffd9d52398"
],
"x-ms-correlation-request-id": [
- "bcf8dc7f-022b-43e6-860c-00571b5ba638"
+ "2605b41a-ef68-4a53-9351-deffd9d52398"
],
"x-ms-routing-request-id": [
- "WESTUS:20210715T063939Z:bcf8dc7f-022b-43e6-860c-00571b5ba638"
+ "WESTCENTRALUS:20220322T063922Z:2605b41a-ef68-4a53-9351-deffd9d52398"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6632,7 +7526,7 @@
"nosniff"
],
"Date": [
- "Thu, 15 Jul 2021 06:39:39 GMT"
+ "Tue, 22 Mar 2022 06:39:22 GMT"
],
"Expires": [
"-1"
@@ -6647,8 +7541,8 @@
],
"Names": {
"Test-ApiManagementVirtualNetworkCRUD": [
- "ps4328",
- "ps8959"
+ "ps7177",
+ "ps2356"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement/ApiManagement.csproj b/src/ApiManagement/ApiManagement/ApiManagement.csproj
index 529cc8243801..46e0652737cc 100644
--- a/src/ApiManagement/ApiManagement/ApiManagement.csproj
+++ b/src/ApiManagement/ApiManagement/ApiManagement.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement/ApiManagementClient.cs b/src/ApiManagement/ApiManagement/ApiManagementClient.cs
index 4bf2979d08c9..b01523db0c23 100644
--- a/src/ApiManagement/ApiManagement/ApiManagementClient.cs
+++ b/src/ApiManagement/ApiManagement/ApiManagementClient.cs
@@ -141,7 +141,9 @@ public PsApiManagement CreateApiManagementService(
string[] userAssignedIdentity = null,
string[] zone = null,
bool? disableGateway = null,
- string minimalControlPlaneApiVersion = null)
+ string minimalControlPlaneApiVersion = null,
+ string publicNetworkAccess = null,
+ string publicIpAddressId = null)
{
string skuType = Mappers.MapSku(sku);
@@ -221,6 +223,16 @@ public PsApiManagement CreateApiManagementService(
};
}
+ if (publicIpAddressId != null)
+ {
+ parameters.PublicIpAddressId = publicIpAddressId;
+ }
+
+ if (publicNetworkAccess != null)
+ {
+ parameters.PublicNetworkAccess = publicNetworkAccess;
+ }
+
parameters.Identity = Mappers.MapAssignedIdentity(createSystemResourceIdentity, userAssignedIdentity);
var apiManagementResource = Client.ApiManagementService.CreateOrUpdate(resourceGroupName, serviceName, parameters);
@@ -247,7 +259,9 @@ public PsApiManagement BackupApiManagement(
string storageAccountName,
string storageAccountKey,
string backupContainer,
- string backupBlob)
+ string backupBlob,
+ string accessType,
+ string identityClientId = null)
{
if (string.IsNullOrWhiteSpace(backupBlob))
{
@@ -257,11 +271,21 @@ public PsApiManagement BackupApiManagement(
var parameters = new ApiManagementServiceBackupRestoreParameters
{
StorageAccount = storageAccountName,
- AccessKey = storageAccountKey,
ContainerName = backupContainer,
- BackupName = backupBlob
+ BackupName = backupBlob,
+ AccessType = accessType
};
+ if (!string.IsNullOrWhiteSpace(storageAccountKey))
+ {
+ parameters.AccessKey = storageAccountKey;
+ }
+
+ if (!string.IsNullOrWhiteSpace(identityClientId))
+ {
+ parameters.ClientId = identityClientId;
+ }
+
var apiManagementServiceResource = Client.ApiManagementService.Backup(resourceGroupName, serviceName, parameters);
return new PsApiManagement(apiManagementServiceResource);
}
@@ -279,16 +303,28 @@ public PsApiManagement RestoreApiManagement(
string storageAccountName,
string storageAccountKey,
string backupContainer,
- string backupBlob)
+ string backupBlob,
+ string accessType,
+ string identityClientId)
{
var parameters = new ApiManagementServiceBackupRestoreParameters
{
StorageAccount = storageAccountName,
- AccessKey = storageAccountKey,
ContainerName = backupContainer,
- BackupName = backupBlob
+ BackupName = backupBlob,
+ AccessType = accessType
};
+ if (!string.IsNullOrWhiteSpace(storageAccountKey))
+ {
+ parameters.AccessKey = storageAccountKey;
+ }
+
+ if (!string.IsNullOrWhiteSpace(identityClientId))
+ {
+ parameters.ClientId = identityClientId;
+ }
+
var apiManagementServiceResource = Client.ApiManagementService.Restore(resourceGroupName, serviceName, parameters);
return new PsApiManagement(apiManagementServiceResource);
}
diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md
index 275d998c0598..e9330af67cc2 100644
--- a/src/ApiManagement/ApiManagement/ChangeLog.md
+++ b/src/ApiManagement/ApiManagement/ChangeLog.md
@@ -19,6 +19,9 @@
-->
## Upcoming Release
+* [Breaking change] Replaced parameter `Sample` by `Examples` in `New-AzApiManagementOperation` and `Set-AzApiManagementOperation`
+* Updated APIM .Net SDK version to 8.0.0 / Api Version 2021-08-01
+
## Version 2.3.2
Added warning message for upcoming breaking change.
diff --git a/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs
index 164b500f9a53..87eb9a3e662d 100644
--- a/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs
@@ -70,6 +70,9 @@ public class AddAzureApiManagementRegion : AzureApiManagementCmdletBase
" Default behavior is to make the region live immediately. ")]
public bool? DisableGateway { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments")]
+ public string PublicIpAddressId { get; set; }
+
public override void ExecuteCmdlet()
{
ExecuteCmdLetWrap(
@@ -81,7 +84,8 @@ public override void ExecuteCmdlet()
Capacity ?? 1,
VirtualNetwork,
Zone,
- DisableGateway);
+ DisableGateway,
+ PublicIpAddressId);
return ApiManagement;
},
diff --git a/src/ApiManagement/ApiManagement/Commands/BackupAzureApiManagement.cs b/src/ApiManagement/ApiManagement/Commands/BackupAzureApiManagement.cs
index ab43286c5565..732cfdb7280b 100644
--- a/src/ApiManagement/ApiManagement/Commands/BackupAzureApiManagement.cs
+++ b/src/ApiManagement/ApiManagement/Commands/BackupAzureApiManagement.cs
@@ -19,6 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands
using System.Management.Automation;
using ResourceManager.Common.ArgumentCompleters;
using Microsoft.WindowsAzure.Storage;
+ using SdkModels = Microsoft.Azure.Management.ApiManagement.Models;
[Cmdlet("Backup", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagement"), OutputType(typeof(PsApiManagement))]
public class BackupAzureApiManagement : AzureApiManagementCmdletBase
@@ -59,6 +60,17 @@ public class BackupAzureApiManagement : AzureApiManagementCmdletBase
HelpMessage = "Name of target Azure Storage blob. If the blob does not exist it will be created.")]
public string TargetBlobName { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The type of access to be used for the storage account.")]
+ [PSArgumentCompleter(SdkModels.AccessType.AccessKey, SdkModels.AccessType.SystemAssignedManagedIdentity, SdkModels.AccessType.UserAssignedManagedIdentity)]
+ public string AccessType { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The Client ID of user assigned managed identity. Required only if accessType is set to UserAssignedManagedIdentity.")]
+ public string IdentityClientId { get; set; }
+
[Parameter(
Mandatory = false,
HelpMessage = "Sends backed up PsApiManagement to pipeline if operation succeeds.")]
@@ -66,25 +78,48 @@ public class BackupAzureApiManagement : AzureApiManagementCmdletBase
public override void ExecuteCmdlet()
{
- CloudStorageAccount account = null;
- if (CloudStorageAccount.TryParse(StorageContext.ConnectionString, out account))
+ if (string.IsNullOrWhiteSpace(AccessType))
{
- var apiManagementResource = Client.BackupApiManagement(
- ResourceGroupName,
- Name,
- account.Credentials.AccountName,
- account.Credentials.ExportBase64EncodedKey(),
- TargetContainerName,
- TargetBlobName);
+ this.AccessType = SdkModels.AccessType.AccessKey;
+ }
- if (PassThru.IsPresent)
+ PsApiManagement apiManagement = null;
+ if (this.AccessType == SdkModels.AccessType.AccessKey)
+ {
+ CloudStorageAccount account = null;
+ if (CloudStorageAccount.TryParse(StorageContext.ConnectionString, out account))
+ {
+ apiManagement = Client.BackupApiManagement(
+ ResourceGroupName,
+ Name,
+ account.Credentials.AccountName,
+ account.Credentials.ExportBase64EncodedKey(),
+ TargetContainerName,
+ TargetBlobName,
+ AccessType,
+ IdentityClientId);
+ }
+ else
{
- this.WriteObject(apiManagementResource);
+ throw new PSArgumentException("Failed to parse the storage connection string.", nameof(StorageContext));
}
}
- else
+ else
+ {
+ apiManagement = Client.BackupApiManagement(
+ ResourceGroupName,
+ Name,
+ StorageContext.StorageAccountName,
+ null,
+ TargetContainerName,
+ TargetBlobName,
+ AccessType,
+ IdentityClientId);
+ }
+
+ if (PassThru.IsPresent && apiManagement != null)
{
- throw new PSArgumentException("Failed to parse the storage connection string.", nameof(StorageContext));
+ this.WriteObject(apiManagement);
}
}
}
diff --git a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs
index 18827acb80bf..79fa36f7900e 100644
--- a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs
+++ b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs
@@ -153,6 +153,13 @@ public class NewAzureApiManagement : AzureApiManagementCmdletBase
HelpMessage = "Minimal Control Plane Apis version to allow for managing the API Management service.")]
public string MinimalControlPlaneApiVersion { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Whether or not public endpoint access is allowed for this service.Possible values include: 'Enabled', 'Disabled'")]
+ [PSArgumentCompleter("Disabled", "Enabled")]
+ public string PublicNetworkAccess { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments")]
+ public string PublicIpAddressId { get; set; }
+
public override void ExecuteCmdlet()
{
var apiManagementService = Client.CreateApiManagementService(
@@ -175,7 +182,9 @@ public override void ExecuteCmdlet()
UserAssignedIdentity,
Zone,
DisableGateway,
- MinimalControlPlaneApiVersion);
+ MinimalControlPlaneApiVersion,
+ PublicNetworkAccess,
+ PublicIpAddressId);
this.WriteObject(apiManagementService);
}
diff --git a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs
index d4652ba72830..38e6a9d7299b 100644
--- a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs
+++ b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs
@@ -23,6 +23,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands
using Properties;
using ResourceManager.Common;
using WindowsAzure.Commands.Common;
+ using SdkModels = Microsoft.Azure.Management.ApiManagement.Models;
[Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementCustomHostnameConfiguration", DefaultParameterSetName = "NoChangeCertificate")]
[OutputType(typeof(PsApiManagementCustomHostNameConfiguration))]
@@ -31,6 +32,7 @@ public class NewAzureApiManagementCustomHostnameConfiguration : AzureRMCmdlet
private const string NoChangeCertificate = "NoChangeCertificate";
private const string SslCertificateFromFile = "SslCertificateFromFile";
private const string SslCertificateFromKeyVault = "SslCertificateFromKeyVault";
+ private const string SslCertificateManaged = "SslCertificateManaged";
[Parameter(ValueFromPipelineByPropertyName = false,
ParameterSetName = NoChangeCertificate, Mandatory = true, HelpMessage = "Custom Hostname")]
@@ -38,6 +40,8 @@ public class NewAzureApiManagementCustomHostnameConfiguration : AzureRMCmdlet
ParameterSetName = SslCertificateFromFile, Mandatory = true, HelpMessage = "Custom Hostname")]
[Parameter(ValueFromPipelineByPropertyName = false,
ParameterSetName = SslCertificateFromKeyVault, Mandatory = true, HelpMessage = "Custom Hostname")]
+ [Parameter(ValueFromPipelineByPropertyName = false,
+ ParameterSetName = SslCertificateManaged, Mandatory = true, HelpMessage = "Custom Hostname")]
[ValidateNotNullOrEmpty]
public string Hostname { get; set; }
@@ -47,6 +51,8 @@ public class NewAzureApiManagementCustomHostnameConfiguration : AzureRMCmdlet
ParameterSetName = SslCertificateFromFile, Mandatory = true, HelpMessage = "Hostname Type")]
[Parameter(ValueFromPipelineByPropertyName = false,
ParameterSetName = SslCertificateFromKeyVault, Mandatory = true, HelpMessage = "Hostname Type")]
+ [Parameter(ValueFromPipelineByPropertyName = false,
+ ParameterSetName = SslCertificateManaged, Mandatory = true, HelpMessage = "Hostname Type")]
public PsApiManagementHostnameType HostnameType { get; set; }
[Parameter(
@@ -96,6 +102,13 @@ public class NewAzureApiManagementCustomHostnameConfiguration : AzureRMCmdlet
" This parameter is optional. Default Value is false.")]
public SwitchParameter NegotiateClientCertificate { get; set; }
+ [Parameter(
+ Mandatory = true,
+ ParameterSetName = SslCertificateManaged,
+ HelpMessage = "Determines whether we want to provision a managed certificate whose rotation is managed " +
+ "by the platform")]
+ public SwitchParameter ManagedCertificate { get; set; }
+
public override void ExecuteCmdlet()
{
var hostnameConfig = new PsApiManagementCustomHostNameConfiguration();
@@ -105,6 +118,7 @@ public override void ExecuteCmdlet()
if (!string.IsNullOrWhiteSpace(KeyVaultId))
{
hostnameConfig.KeyVaultId = KeyVaultId;
+ hostnameConfig.CertificateSource = SdkModels.CertificateSource.KeyVault;
if (!string.IsNullOrWhiteSpace(IdentityClientId))
{
hostnameConfig.IdentityClientId = IdentityClientId;
@@ -126,6 +140,7 @@ public override void ExecuteCmdlet()
}
var encodedCertificate = Convert.ToBase64String(certificate);
hostnameConfig.EncodedCertificate = encodedCertificate;
+ hostnameConfig.CertificateSource = SdkModels.CertificateSource.Custom;
if (PfxPassword != null)
{
@@ -136,6 +151,11 @@ public override void ExecuteCmdlet()
{
hostnameConfig.CertificateInformation = HostNameCertificateInformation;
}
+ else if (ManagedCertificate.IsPresent)
+ {
+ // managed certificate
+ hostnameConfig.CertificateSource = SdkModels.CertificateSource.Managed;
+ }
else
{
throw new Exception("Missing Certificate configuration.");
diff --git a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs
index 33603167c3a8..e67d1dca4722 100644
--- a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs
@@ -58,6 +58,9 @@ public class NewAzureApiManagementRegion : AzureRMCmdlet
"Default behavior is to make the region live immediately. ")]
public bool? DisableGateway { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments.")]
+ public string PublicIpAddressId { get; set; }
+
public override void ExecuteCmdlet()
{
WriteObject(
@@ -68,7 +71,8 @@ public override void ExecuteCmdlet()
Capacity = Capacity.HasValue ? Capacity.Value : 1,
VirtualNetwork = VirtualNetwork,
Zone = Zone,
- DisableGateway = DisableGateway
+ DisableGateway = DisableGateway,
+ PublicIpAddressId = PublicIpAddressId
});
}
}
diff --git a/src/ApiManagement/ApiManagement/Commands/RestoreAzureApiManagement.cs b/src/ApiManagement/ApiManagement/Commands/RestoreAzureApiManagement.cs
index 4322c2483642..117431f70096 100644
--- a/src/ApiManagement/ApiManagement/Commands/RestoreAzureApiManagement.cs
+++ b/src/ApiManagement/ApiManagement/Commands/RestoreAzureApiManagement.cs
@@ -19,6 +19,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands
using Microsoft.WindowsAzure.Storage;
using ResourceManager.Common.ArgumentCompleters;
using System.Management.Automation;
+ using SdkModels = Microsoft.Azure.Management.ApiManagement.Models;
[Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagement"), OutputType(typeof(PsApiManagement))]
public class RestoreAzureApiManagement : AzureApiManagementCmdletBase
@@ -62,6 +63,17 @@ public class RestoreAzureApiManagement : AzureApiManagementCmdletBase
[ValidateNotNullOrEmpty]
public string SourceBlobName { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The type of access to be used for the storage account. The default value is AccessKey.")]
+ [PSArgumentCompleter(SdkModels.AccessType.AccessKey, SdkModels.AccessType.SystemAssignedManagedIdentity, SdkModels.AccessType.UserAssignedManagedIdentity)]
+ public string AccessType { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "The Client ID of user assigned managed identity. Required only if accessType is set to UserAssignedManagedIdentity.")]
+ public string IdentityClientId { get; set; }
+
[Parameter(
Mandatory = false,
HelpMessage = "Sends restored PsApiManagement to pipeline if operation succeeds.")]
@@ -69,25 +81,48 @@ public class RestoreAzureApiManagement : AzureApiManagementCmdletBase
public override void ExecuteCmdlet()
{
- CloudStorageAccount account = null;
- if (CloudStorageAccount.TryParse(StorageContext.ConnectionString, out account))
+ if (string.IsNullOrWhiteSpace(AccessType))
{
- var apimanagementResource = Client.RestoreApiManagement(
- ResourceGroupName,
- Name,
- account.Credentials.AccountName,
- account.Credentials.ExportBase64EncodedKey(),
- SourceContainerName,
- SourceBlobName);
+ this.AccessType = SdkModels.AccessType.AccessKey;
+ }
- if (PassThru.IsPresent)
+ PsApiManagement apiManagement = null;
+ if (this.AccessType == SdkModels.AccessType.AccessKey)
+ {
+ CloudStorageAccount account = null;
+ if (CloudStorageAccount.TryParse(StorageContext.ConnectionString, out account))
+ {
+ apiManagement = Client.RestoreApiManagement(
+ ResourceGroupName,
+ Name,
+ account.Credentials.AccountName,
+ account.Credentials.ExportBase64EncodedKey(),
+ SourceContainerName,
+ SourceBlobName,
+ AccessType,
+ IdentityClientId);
+ }
+ else
{
- this.WriteObject(apimanagementResource);
+ throw new PSArgumentException("Failed to parse the storage connection string.", nameof(StorageContext));
}
}
- else
+ else
+ {
+ apiManagement = Client.RestoreApiManagement(
+ ResourceGroupName,
+ Name,
+ StorageContext.StorageAccountName,
+ null,
+ SourceContainerName,
+ SourceBlobName,
+ AccessType,
+ IdentityClientId);
+ }
+
+ if (PassThru.IsPresent && apiManagement != null)
{
- throw new PSArgumentException("Failed to parse the storage connection string.", nameof(StorageContext));
+ this.WriteObject(apiManagement);
}
}
}
diff --git a/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs
index 4192403701ad..2f1b38d35bd2 100644
--- a/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs
@@ -70,6 +70,9 @@ public class UpdateAzureApiManagementRegion : AzureApiManagementCmdletBase
" This can also be used to standup a new region in Passive mode, test it and then make it Live later.")]
public bool? DisableGateway { get; set; }
+ [Parameter(Mandatory = false, HelpMessage = "Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments")]
+ public string PublicIpAddressId { get; set; }
+
public override void ExecuteCmdlet()
{
ExecuteCmdLetWrap(
@@ -81,7 +84,8 @@ public override void ExecuteCmdlet()
Capacity,
VirtualNetwork,
Zone,
- DisableGateway);
+ DisableGateway,
+ PublicIpAddressId);
return ApiManagement;
},
diff --git a/src/ApiManagement/ApiManagement/Helpers/Extensions.cs b/src/ApiManagement/ApiManagement/Helpers/Extensions.cs
index 42057084d9a9..a8339e423ae9 100644
--- a/src/ApiManagement/ApiManagement/Helpers/Extensions.cs
+++ b/src/ApiManagement/ApiManagement/Helpers/Extensions.cs
@@ -67,6 +67,16 @@ public static HostnameConfiguration GetHostnameConfiguration(
hostnameConfiguration.Certificate = hostnameConfig.CertificateInformation.GetCertificateInformation();
}
+ if (!string.IsNullOrWhiteSpace(hostnameConfig.CertificateSource))
+ {
+ hostnameConfiguration.CertificateSource = hostnameConfig.CertificateSource;
+ }
+
+ if (!string.IsNullOrWhiteSpace(hostnameConfig.CertificateStatus))
+ {
+ hostnameConfiguration.CertificateStatus = hostnameConfig.CertificateStatus;
+ }
+
return hostnameConfiguration;
}
@@ -142,6 +152,8 @@ public static AdditionalLocation GetAdditionalLocation(
additionalLocation.DisableGateway = region.DisableGateway;
}
+ additionalLocation.PublicIpAddressId = region.PublicIpAddressId;
+
return additionalLocation;
}
}
diff --git a/src/ApiManagement/ApiManagement/Helpers/Mappers.cs b/src/ApiManagement/ApiManagement/Helpers/Mappers.cs
index 931c3a7d9cdd..6a1ebcf463cb 100644
--- a/src/ApiManagement/ApiManagement/Helpers/Mappers.cs
+++ b/src/ApiManagement/ApiManagement/Helpers/Mappers.cs
@@ -152,7 +152,8 @@ public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement ap
Tags = apiManagement.Tags,
EnableClientCertificate = apiManagement.EnableClientCertificate,
Zones = apiManagement.Zone,
- DisableGateway = apiManagement.DisableGateway
+ DisableGateway = apiManagement.DisableGateway,
+ PublicNetworkAccess = apiManagement.PublicNetworkAccess
};
if (apiManagement.VirtualNetwork != null)
@@ -161,6 +162,8 @@ public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement ap
{
SubnetResourceId = apiManagement.VirtualNetwork.SubnetResourceId
};
+
+ parameters.PublicIpAddressId = apiManagement.PublicIpAddressId;
}
if (apiManagement.AdditionalRegions != null && apiManagement.AdditionalRegions.Any())
@@ -183,7 +186,8 @@ public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement ap
SubnetResourceId = region.VirtualNetwork.SubnetResourceId
},
Zones = region.Zone,
- DisableGateway = region.DisableGateway
+ DisableGateway = region.DisableGateway,
+ PublicIpAddressId = region.PublicIpAddressId
})
.ToList();
}
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs
index 20eed565a72f..4974636c49fe 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs
@@ -59,6 +59,9 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource)
PublicIPAddresses = apiServiceResource.PublicIPAddresses != null ? apiServiceResource.PublicIPAddresses.ToArray() : null;
PrivateIPAddresses = apiServiceResource.PrivateIPAddresses != null ? apiServiceResource.PrivateIPAddresses.ToArray() : null;
EnableClientCertificate = apiServiceResource.EnableClientCertificate;
+ PublicNetworkAccess = apiServiceResource.PublicNetworkAccess;
+ PublicIpAddressId = apiServiceResource.PublicIpAddressId;
+ PlatformVersion = apiServiceResource.PlatformVersion;
VpnType = ApiManagementClient.Mapper.Map(apiServiceResource.VirtualNetworkType);
@@ -144,6 +147,7 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource)
Zone = apiServiceResource.Zones?.ToArray();
MinimalControlPlaneApiVersion = apiServiceResource.ApiVersionConstraint?.MinApiVersion;
DisableGateway = apiServiceResource.DisableGateway;
+ PrivateEndpointConnections = apiServiceResource.PrivateEndpointConnections;
}
public string[] PublicIPAddresses { get; private set; }
@@ -214,6 +218,19 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource)
public string MinimalControlPlaneApiVersion { get; set; }
+ public string PublicIpAddressId { get; set; }
+
+ //
+ // Summary:
+ // Gets compute Platform Version running the service. Possible values include: 'undetermined',
+ // 'stv1', 'stv2', 'mtv1'
+ public string PlatformVersion { get; set; }
+
+ public string PublicNetworkAccess { get; set; }
+
+ // Gets or sets list of Private Endpoint Connections configured for the Api Management Service .
+ public IList PrivateEndpointConnections { get; set; }
+
public string ResourceGroupName
{
get
@@ -243,7 +260,8 @@ public PsApiManagementRegion AddRegion(
int capacity = 1,
PsApiManagementVirtualNetwork virtualNetwork = null,
string[] zone = null,
- bool? disableGateway = null)
+ bool? disableGateway = null,
+ string publicIpAddressId = null)
{
if (location == null)
{
@@ -262,7 +280,8 @@ public PsApiManagementRegion AddRegion(
Capacity = capacity,
VirtualNetwork = virtualNetwork,
Zone = zone,
- DisableGateway = disableGateway
+ DisableGateway = disableGateway,
+ PublicIpAddressId = publicIpAddressId
};
AdditionalRegions.Add(newRegion);
@@ -295,7 +314,8 @@ public void UpdateRegion(
int capacity,
PsApiManagementVirtualNetwork virtualNetwork,
string[] zone,
- bool? disableGateway)
+ bool? disableGateway,
+ string publicIpAddressId)
{
if (location == null)
{
@@ -311,6 +331,7 @@ public void UpdateRegion(
regionToUpdate.VirtualNetwork = virtualNetwork;
regionToUpdate.Zone = zone;
regionToUpdate.DisableGateway = disableGateway;
+ regionToUpdate.PublicIpAddressId = publicIpAddressId;
}
else if (location.Equals(Location))
{
@@ -320,6 +341,7 @@ public void UpdateRegion(
VirtualNetwork = virtualNetwork;
Zone = zone;
DisableGateway = disableGateway;
+ PublicIpAddressId = publicIpAddressId;
}
else
{
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs
index 5c38388ea026..8a147b9ce2a8 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs
@@ -39,6 +39,8 @@ internal PsApiManagementCustomHostNameConfiguration(HostnameConfiguration hostna
DefaultSslBinding = hostnameConfigurationResource.DefaultSslBinding;
NegotiateClientCertificate = hostnameConfigurationResource.NegotiateClientCertificate;
HostnameType = Mappers.MapHostnameType(hostnameConfigurationResource.Type);
+ CertificateSource = hostnameConfigurationResource.CertificateSource;
+ CertificateStatus = hostnameConfigurationResource.CertificateStatus;
}
public PsApiManagementCertificateInformation CertificateInformation { get; set; }
@@ -58,5 +60,17 @@ internal PsApiManagementCustomHostNameConfiguration(HostnameConfiguration hostna
public bool? NegotiateClientCertificate { get; set; }
public string IdentityClientId { get; set; }
+
+ //
+ // Summary:
+ // Gets or sets certificate Status. Possible values include: 'Completed', 'Failed',
+ // 'InProgress'
+ public string CertificateStatus { get; set; }
+
+ //
+ // Summary:
+ // Gets or sets certificate Source. Possible values include: 'Managed', 'KeyVault',
+ // 'Custom', 'BuiltIn'
+ public string CertificateSource { get; set; }
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs
index c720d5f14c19..352a10c07229 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs
@@ -41,6 +41,8 @@ internal PsApiManagementRegion(AdditionalLocation additionalLocation)
PrivateIPAddresses = additionalLocation.PrivateIPAddresses != null ? additionalLocation.PrivateIPAddresses.ToArray() : null;
Zone = additionalLocation.Zones?.ToArray();
DisableGateway = additionalLocation.DisableGateway;
+ PublicIpAddressId = additionalLocation.PublicIpAddressId;
+ PlatformVersion = additionalLocation.PlatformVersion;
if (additionalLocation.VirtualNetworkConfiguration != null)
{
VirtualNetwork = new PsApiManagementVirtualNetwork(additionalLocation.VirtualNetworkConfiguration);
@@ -64,5 +66,13 @@ internal PsApiManagementRegion(AdditionalLocation additionalLocation)
public string[] Zone { get; set; }
public bool? DisableGateway { get; set; }
+
+ public string PublicIpAddressId { get; set; }
+
+ //
+ // Summary:
+ // Gets compute Platform Version running the service. Possible values include: 'undetermined',
+ // 'stv1', 'stv2', 'mtv1'
+ public string PlatformVersion { get; set; }
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md
index ec617485942f..f14eb2048de3 100644
--- a/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md
+++ b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md
@@ -16,7 +16,8 @@ Adds new deployment regions to a PsApiManagement instance.
```
Add-AzApiManagementRegion -ApiManagement -Location [-Sku ]
[-Capacity ] [-VirtualNetwork ] [-Zone ]
- [-DisableGateway ] [-DefaultProfile ] []
+ [-DisableGateway ] [-PublicIpAddressId ] [-DefaultProfile ]
+ []
```
## DESCRIPTION
@@ -122,6 +123,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -PublicIpAddressId
+Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Sku
Specifies the tier of the deployment region.
Valid values are:
diff --git a/src/ApiManagement/ApiManagement/help/Backup-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/Backup-AzApiManagement.md
index 54bddddaa5bc..ace35ae4863d 100644
--- a/src/ApiManagement/ApiManagement/help/Backup-AzApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/Backup-AzApiManagement.md
@@ -9,23 +9,26 @@ schema: 2.0.0
# Backup-AzApiManagement
## SYNOPSIS
+
Backs up an API Management service.
## SYNTAX
```
Backup-AzApiManagement -ResourceGroupName -Name -StorageContext
- -TargetContainerName [-TargetBlobName ] [-PassThru]
- [-DefaultProfile ] []
+ -TargetContainerName [-TargetBlobName ] [-AccessType ] [-IdentityClientId ]
+ [-PassThru] [-DefaultProfile ] []
```
## DESCRIPTION
+
The **Backup-AzApiManagement** cmdlet backs up an instance of an Azure API Management service.
This cmdlet stores the backup as an Azure Storage blob.
## EXAMPLES
### Example 1: Back up an API Management service
+
```powershell
New-AzStorageAccount -StorageAccountName "ContosoStorage" -Location $location -ResourceGroupName "ContosoGroup02" -Type Standard_LRS
$storageKey = (Get-AzStorageAccountKey -ResourceGroupName "ContosoGroup02" -StorageAccountName "ContosoStorage")[0].Value
@@ -33,11 +36,80 @@ $storageContext = New-AzStorageContext -StorageAccountName "ContosoStorage" -Sto
Backup-AzApiManagement -ResourceGroupName "ContosoGroup02" -Name "ContosoApi" -StorageContext $StorageContext -TargetContainerName "ContosoBackups" -TargetBlobName "ContosoBackup.apimbackup"
```
-This command backs up an API Management service to a Storage blob.
+### Example 2: Back up using Managed Identity
+
+```powershell
+PS D:> $storageContext=New-AzStorageContext -StorageAccountName apimbackupmsi
+PS D:> $resourceGroupName="contosogroup2";
+PS D:> $apiManagementName="contosoapi";
+PS D:> $containerName="apimbackupcontainer";
+PS D:> $backupName="test-sdk-backup-1";
+PS D:> $msiClientId="a6270d0c-7d86-478b-8cbe-dc9047ba54f7"
+PS D:> Backup-AzApiManagement -ResourceGroupName $resourceGroupName -Name $apiManagementName -StorageContext $storageContext -TargetContainerName $containerName -TargetBlobName $backupName -AccessType "UserAssignedManagedIdentity" -IdentityClientId $msiClientId -PassThru
+
+PublicIPAddresses : {52.143.79.150}
+PrivateIPAddresses :
+Id : /subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/contosogroup2/providers/Microsoft.ApiManagement/service/contosoapi
+Name : contosoapi
+Location : West US 2
+Sku : Premium
+Capacity : 1
+CreatedTimeUtc : 10/13/2021 5:49:32 PM
+ProvisioningState : Succeeded
+RuntimeUrl : https://contosoapi.azure-api.net
+RuntimeRegionalUrl : https://contosoapi-westus2-01.regional.azure-api.net
+PortalUrl : https://contosoapi.portal.azure-api.net
+DeveloperPortalUrl : https://contosoapi.developer.azure-api.net
+ManagementApiUrl : https://contosoapi.management.azure-api.net
+ScmUrl : https://contosoapi.scm.azure-api.net
+PublisherEmail : foobar@microsoft.com
+OrganizationName : fsdfsdfs
+NotificationSenderEmail : apimgmt-noreply@mail.windowsazure.com
+VirtualNetwork :
+VpnType : None
+PortalCustomHostnameConfiguration :
+ProxyCustomHostnameConfiguration : {contosoapi.azure-api.net}
+ManagementCustomHostnameConfiguration :
+ScmCustomHostnameConfiguration :
+DeveloperPortalHostnameConfiguration :
+SystemCertificates :
+Tags : {}
+AdditionalRegions : {}
+SslSetting : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting
+Identity : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity
+EnableClientCertificate :
+Zone :
+DisableGateway : False
+MinimalControlPlaneApiVersion :
+PublicIpAddressId :
+PlatformVersion : stv2
+PublicNetworkAccess : Enabled
+PrivateEndpointConnections :
+ResourceGroupName : contosogroup2
+```
+
+This command backs up an API Management service to a Storage blob using UserAssigned Managed Identity
## PARAMETERS
+### -AccessType
+
+The type of access to be used for the storage account.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -DefaultProfile
+
The credentials, account, tenant, and subscription used for communication with azure.
```yaml
@@ -52,7 +124,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -IdentityClientId
+
+The Client ID of user assigned managed identity. Required only if accessType is set to UserAssignedManagedIdentity.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Name
+
Specifies the name of the API Management deployment that this cmdlet backs up.
```yaml
@@ -68,6 +157,7 @@ Accept wildcard characters: False
```
### -PassThru
+
Indicates that this cmdlet returns the backed up **PsApiManagement** object, if the operation succeeds.
```yaml
@@ -83,6 +173,7 @@ Accept wildcard characters: False
```
### -ResourceGroupName
+
Specifies the name of the of resource group under which the API Management deployment exists.
```yaml
@@ -98,6 +189,7 @@ Accept wildcard characters: False
```
### -StorageContext
+
Specifies a storage connection context.
```yaml
@@ -113,9 +205,10 @@ Accept wildcard characters: False
```
### -TargetBlobName
+
Specifies the name of the blob for the backup.
If the blob does not exist, this cmdlet creates it.
-This cmdlet generates a default value based on the following pattern:
+This cmdlet generates a default value based on the following pattern:
{Name}-{yyyy-MM-dd-HH-mm}.apimbackup
```yaml
@@ -131,6 +224,7 @@ Accept wildcard characters: False
```
### -TargetContainerName
+
Specifies the name of the container of the blob for the backup.
If the container does not exist, this cmdlet creates it.
@@ -147,6 +241,7 @@ Accept wildcard characters: False
```
### CommonParameters
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -170,5 +265,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[Remove-AzApiManagement](./Remove-AzApiManagement.md)
[Restore-AzApiManagement](./Restore-AzApiManagement.md)
-
-
diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagement.md
index d22fba297843..53b5d6ffa6cc 100644
--- a/src/ApiManagement/ApiManagement/help/Get-AzApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagement.md
@@ -9,53 +9,103 @@ schema: 2.0.0
# Get-AzApiManagement
## SYNOPSIS
+
Gets a list or a particular API Management Service description.
## SYNTAX
### GetBySubscription (Default)
-```
+
+```powershell
Get-AzApiManagement [-DefaultProfile ] []
```
### GetByResourceGroup
-```
+
+```powershell
Get-AzApiManagement -ResourceGroupName [-DefaultProfile ] []
```
### GetByResource
-```
+
+```powershell
Get-AzApiManagement -ResourceGroupName -Name [-DefaultProfile ]
[]
```
### ByResourceId
+
```
Get-AzApiManagement -ResourceId [-DefaultProfile ] []
```
## DESCRIPTION
+
The **Get-AzApiManagement** cmdlet gets a list of all API Management services under subscription or specified resource group or a particular API Management.
## EXAMPLES
### Example 1: Get all API Management services
+
```powershell
Get-AzApiManagement
```
This command gets all API Management services within a subscription.
-### Example 2: Get all API Management services by a specific name
+### Example 2: Get an API Management services by a specific name
+
```powershell
-Get-AzApiManagement -ResourceGroupName "ContosoGroup" -Name "ContosoApi"
+PS D:> Get-AzApiManagement -ResourceGroupName "contosogroup" -Name "contoso"
+
+PublicIPAddresses : {52.143.79.150}
+PrivateIPAddresses :
+Id : /subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/contosogroup/providers/Microsoft.ApiManagement/service/contoso
+Name : contoso
+Location : West US 2
+Sku : Premium
+Capacity : 1
+CreatedTimeUtc : 10/13/2021 5:49:32 PM
+ProvisioningState : Succeeded
+RuntimeUrl : https://contoso.azure-api.net
+RuntimeRegionalUrl : https://contoso-westus2-01.regional.azure-api.net
+PortalUrl : https://contoso.portal.azure-api.net
+DeveloperPortalUrl : https://contoso.developer.azure-api.net
+ManagementApiUrl : https://contoso.management.azure-api.net
+ScmUrl : https://contoso.scm.azure-api.net
+PublisherEmail : glfeokti@microsoft.com
+OrganizationName : fsdfsdfs
+NotificationSenderEmail : apimgmt-noreply@mail.windowsazure.com
+VirtualNetwork :
+VpnType : None
+PortalCustomHostnameConfiguration :
+ProxyCustomHostnameConfiguration : {contoso.azure-api.net}
+ManagementCustomHostnameConfiguration :
+ScmCustomHostnameConfiguration :
+DeveloperPortalHostnameConfiguration :
+SystemCertificates :
+Tags : {}
+AdditionalRegions : {}
+SslSetting : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting
+Identity : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity
+EnableClientCertificate :
+Zone :
+DisableGateway : False
+MinimalControlPlaneApiVersion :
+PublicIpAddressId :
+PlatformVersion : stv2
+PublicNetworkAccess : Enabled
+PrivateEndpointConnections : {kjoshipeconnection, kjoshipeeus}
+ResourceGroupName : contosogroup
```
This command gets all API Management service by name.
+
## PARAMETERS
### -DefaultProfile
+
The credentials, account, tenant, and subscription used for communication with azure.
```yaml
@@ -71,6 +121,7 @@ Accept wildcard characters: False
```
### -Name
+
Specifies the name of API Management service.
```yaml
@@ -86,6 +137,7 @@ Accept wildcard characters: False
```
### -ResourceGroupName
+
Specifies the name of the resource group under in which this cmdlet gets the API Management service.
```yaml
@@ -101,6 +153,7 @@ Accept wildcard characters: False
```
### -ResourceId
+
Arm ResourceId of the API Management service.
```yaml
@@ -116,6 +169,7 @@ Accept wildcard characters: False
```
### CommonParameters
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -137,5 +191,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[Remove-AzApiManagement](./Remove-AzApiManagement.md)
[Restore-AzApiManagement](./Restore-AzApiManagement.md)
-
-
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md
index 6cfd4d424ea0..0fdec8d3c81c 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md
@@ -9,6 +9,7 @@ schema: 2.0.0
# New-AzApiManagement
## SYNOPSIS
+
Creates an API Management deployment.
## SYNTAX
@@ -23,15 +24,18 @@ New-AzApiManagement -ResourceGroupName -Name -Location ]
[-SslSetting ] [-SystemAssignedIdentity] [-UserAssignedIdentity ]
[-EnableClientCertificate] [-Zone ] [-DisableGateway ]
- [-MinimalControlPlaneApiVersion ] [-DefaultProfile ] []
+ [-MinimalControlPlaneApiVersion ] [-PublicNetworkAccess ] [-PublicIpAddressId ]
+ [-DefaultProfile ] []
```
## DESCRIPTION
+
The **New-AzApiManagement** cmdlet creates an API Management deployment in Azure API Management.
## EXAMPLES
### Example 1: Create a Developer tier API Management service
+
```powershell
New-AzApiManagement -ResourceGroupName "ContosoGroup02" -Name "ContosoApi2" -Location "Central US" -Organization "Contoso" -AdminEmail "admin@contoso.com"
```
@@ -77,6 +81,7 @@ The command does not specify the *SKU* parameter.
Therefore, the cmdlet uses the default value of Developer.
### Example 2: Create a Standard tier service that has three units
+
```powershell
New-AzApiManagement -ResourceGroupName "ContosoGroup02" -Name "ContosoApi" -Location "Central US" -Organization "Contoso" -AdminEmail "admin@contoso.com" -Sku Standard -Capacity 3
```
@@ -84,6 +89,7 @@ New-AzApiManagement -ResourceGroupName "ContosoGroup02" -Name "ContosoApi" -Loca
This command creates a Standard tier API Management service that has three units.
### Example 3: Create a Consumption tier service
+
```powershell
New-AzApiManagement -ResourceGroupName Api-Default-North-Europe -Name consumptionskuservice -Location 'West Europe' -Sku Consumption -Organization microsoft -AdminEmail contoso@contoso.com -SystemAssignedIdentity -EnableClientCertificate
```
@@ -114,23 +120,8 @@ ResourceGroupName : Api-Default-North-Europe
This command creates a consumption tier API Management service with Client Certificate enabled in west Europe.
-### Example 4: Create an API Management service for an external virtual network
-```powershell
-$virtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId "/subscriptions/a8ff56dc-3bc7-4174-b1e8-3726ab15d0e2/resourceGroups/ContosoGroup/providers/Microsoft.Network/virtualNetworks/westUsVirtualNetwork/subnets/backendSubnet"
-New-AzApiManagement -ResourceGroupName "ContosoGroup" -Location "West US" -Name "ContosoApi" -Organization Contoso -AdminEmail admin@contoso.com -VirtualNetwork $virtualNetwork -VpnType "External" -Sku "Premium"
-```
-
-This command creates a Premium-tier API Management service in an Azure virtual network subnet having an external-facing gateway endpoint with a master region in the West US.
+### Example 4: Create an API Management service and Enable TLS 1.0 protocol
-### Example 5: Create an API Management service for an internal virtual network
-```powershell
-$virtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId "/subscriptions/a8ff56dc-3bc7-4174-b1e8-3726ab15d0e2/resourceGroups/ContosoGroup/providers/Microsoft.Network/virtualNetworks/westUsVirtualNetwork/subnets/backendSubnet"
-New-AzApiManagement -ResourceGroupName "ContosoGroup" -Location "West US" -Name "ContosoApi" -Organization "Contoso" -AdminEmail "admin@contoso.com" -VirtualNetwork $virtualNetwork -VpnType "Internal" -Sku "Premium"
-```
-
-This command creates a Premium-tier API Management service in an Azure virtual network subnet having an internal-facing gateway endpoint with a master region in the West US.
-
-### Example 6: Create an API Management service and Enable TLS 1.0 protocol
```powershell
$enableTls=@{"Tls10" = "True"}
$sslSetting = New-AzApiManagementSslSetting -FrontendProtocol $enableTls -BackendProtocol $enableTls
@@ -172,7 +163,8 @@ ResourceGroupName : Api-Default-CentralUS
This command creates a Standard SKU Api Management service and Enable TLS 1.0 on Frontend client to ApiManagement Gateway and Backend client between ApiManagement Gateway and Backend.
-### Example 7: Create an API Management service in Availability Zones
+### Example 5: Create an API Management service in Availability Zones
+
```powershell
New-AzApiManagement -ResourceGroupName "contoso-rg" -Name "apim-test-pshell-azs" -Location "Central US" -Organization "Contoso" -AdminEmail "admin@contoso.com" -Sku Premium -Capacity 3 -Zone @("1","2","3")
```
@@ -214,11 +206,76 @@ DisableGateway : False
MinimalControlPlaneApiVersion :
ResourceGroupName : contoso-rg
```
+
This command creates a Premium SKU Api Management service in Zones
+### Example 6: Create an API Management service in Internal Mode into Virtual Network with Stv2
+
+```powershell
+PS D:> $virtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId "/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/contosogroup/providers/Microsoft.Network/virtualNetworks/apimvnet/subnets/ps"
+PS D:> $publicIpAddressId = "/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/contosogroup/providers/Microsoft.Network/publicIPAddresses/apim-external-vnet-ipv4"
+PS D:> New-AzApiManagement -ResourceGroupName "contosogroup" -Location "West US2" -Name "pstestinternalvnet2" -Organization "Contoso" -AdminEmail "admin@contoso.com" -VirtualNetwork $virtualNetwork -VpnType "Internal" -Sku "Premium" -PublicIpAddressId $publicIpAddressId
+```
+
+```output
+PublicIPAddresses : {20.99.249.73}
+PrivateIPAddresses : {10.0.2.4}
+Id : /subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/contosogroup/providers/Microsoft.ApiManagement/service/pstestinternalvnet2
+Name : pstestinternalvnet2
+Location : West US 2
+Sku : Premium
+Capacity : 1
+CreatedTimeUtc : 3/24/2022 11:09:57 PM
+ProvisioningState : Succeeded
+RuntimeUrl : https://pstestinternalvnet2.azure-api.net
+RuntimeRegionalUrl : https://pstestinternalvnet2-westus2-01.regional.azure-api.net
+PortalUrl : https://pstestinternalvnet2.portal.azure-api.net
+DeveloperPortalUrl : https://pstestinternalvnet2.developer.azure-api.net
+ManagementApiUrl : https://pstestinternalvnet2.management.azure-api.net
+ScmUrl : https://pstestinternalvnet2.scm.azure-api.net
+PublisherEmail : admin@contoso.com
+OrganizationName : Contoso
+NotificationSenderEmail : apimgmt-noreply@mail.windowsazure.com
+VirtualNetwork : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementVirtualNetwork
+VpnType : Internal
+PortalCustomHostnameConfiguration :
+ProxyCustomHostnameConfiguration : {pstestinternalvnet2.azure-api.net}
+ManagementCustomHostnameConfiguration :
+ScmCustomHostnameConfiguration :
+DeveloperPortalHostnameConfiguration :
+SystemCertificates :
+Tags : {}
+AdditionalRegions : {}
+SslSetting : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting
+Identity :
+EnableClientCertificate :
+Zone :
+DisableGateway :
+MinimalControlPlaneApiVersion :
+PublicIpAddressId : /subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/contosogroup/providers/Microsoft.Network/publicIPAddresses/apim-external-vnet-ipv4
+PlatformVersion : stv2
+PublicNetworkAccess : Enabled
+PrivateEndpointConnections :
+ResourceGroupName : contosogroup
+```
+
+The cmdlet deploys the API Management service into Virtual Network using stv2 platform version.
+
+
+### Example 7: Create an API Management service for an external virtual network for Stv1
+
+```powershell
+$virtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId "/subscriptions/a8ff56dc-3bc7-4174-b1e8-3726ab15d0e2/resourceGroups/ContosoGroup/providers/Microsoft.Network/virtualNetworks/westUsVirtualNetwork/subnets/backendSubnet"
+New-AzApiManagement -ResourceGroupName "ContosoGroup" -Location "West US" -Name "ContosoApi" -Organization Contoso -AdminEmail admin@contoso.com -VirtualNetwork $virtualNetwork -VpnType "External" -Sku "Premium"
+```
+
+This command creates a Premium-tier API Management service in an Azure virtual network subnet having an external-facing gateway endpoint with a master region in the West US in stv1 model
+
+
## PARAMETERS
### -AdditionalRegions
+
Additional deployment regions of Azure API Management.
```yaml
@@ -234,6 +291,7 @@ Accept wildcard characters: False
```
### -AdminEmail
+
Specifies the originating email address for all notifications that the API Management system sends.
```yaml
@@ -249,6 +307,7 @@ Accept wildcard characters: False
```
### -Capacity
+
Specifies the SKU capacity of the Azure API Management service.
The default is one (1).
@@ -265,6 +324,7 @@ Accept wildcard characters: False
```
### -CustomHostnameConfiguration
+
Custom hostname configurations. Default value is $null. Passing $null will set the default hostname.
```yaml
@@ -280,6 +340,7 @@ Accept wildcard characters: False
```
### -DefaultProfile
+
The credentials, account, tenant, and subscription used for communication with azure.
```yaml
@@ -295,6 +356,7 @@ Accept wildcard characters: False
```
### -DisableGateway
+
Flag only meant to be used for Premium SKU ApiManagement Service and Non Internal VNET deployments. This is useful in case we want to take a gateway region out of rotation. This can also be used to standup a new region in Passive mode, test it and then make it Live later.
```yaml
@@ -310,6 +372,7 @@ Accept wildcard characters: False
```
### -EnableClientCertificate
+
Flag only meant to be used for Consumption SKU ApiManagement Service. This enforces a client certificate to be presented on each request to the gateway. This also enables the ability to authenticate the certificate in the policy on the gateway.
```yaml
@@ -325,6 +388,7 @@ Accept wildcard characters: False
```
### -Location
+
Specifies the location to create the Api Management service.
To obtain valid locations, use the cmdlet
Get-AzResourceProvider -ProviderNamespace "Microsoft.ApiManagement" | where {$_.ResourceTypes[0].ResourceTypeName -eq "service"} | Select-Object Locations
@@ -342,6 +406,7 @@ Accept wildcard characters: False
```
### -MinimalControlPlaneApiVersion
+
Minimal Control Plane Apis version to allow for managing the API Management service.
```yaml
@@ -357,6 +422,7 @@ Accept wildcard characters: False
```
### -Name
+
Specifies a name for the API Management deployment.
```yaml
@@ -372,6 +438,7 @@ Accept wildcard characters: False
```
### -Organization
+
Specifies the name of an organization.
API Management uses this address in the developer portal in email notifications.
@@ -387,7 +454,40 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -PublicIpAddressId
+
+Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -PublicNetworkAccess
+
+Whether or not public endpoint access is allowed for this service.Possible values include: 'Enabled', 'Disabled'
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -ResourceGroupName
+
Specifies the name of the of resource group under which this cmdlet creates an API Management deployment.
```yaml
@@ -403,11 +503,13 @@ Accept wildcard characters: False
```
### -Sku
+
Specifies the tier of the API Management service.
-Valid values are:
-- Developer
-- Standard
-- Premium
+Valid values are:
+
+- Developer
+- Standard
+- Premium
The default is Developer.
```yaml
@@ -424,6 +526,7 @@ Accept wildcard characters: False
```
### -SslSetting
+
The Ssl Setting of the ApiManagement Service. Default value is $null
```yaml
@@ -439,6 +542,7 @@ Accept wildcard characters: False
```
### -SystemAssignedIdentity
+
Generate and assign an Azure Active Directory Identity for this server for use with key management services like Azure KeyVault.
```yaml
@@ -454,6 +558,7 @@ Accept wildcard characters: False
```
### -SystemCertificateConfiguration
+
Certificates issued by Internal CA to be installed on the service. Default value is $null.
```yaml
@@ -469,6 +574,7 @@ Accept wildcard characters: False
```
### -Tag
+
Tags dictionary.
```yaml
@@ -484,6 +590,7 @@ Accept wildcard characters: False
```
### -UserAssignedIdentity
+
Assign User Identities to this server for use with key management services like Azure KeyVault.
```yaml
@@ -499,6 +606,7 @@ Accept wildcard characters: False
```
### -VirtualNetwork
+
Virtual Network Configuration of master Azure API Management deployment region.
```yaml
@@ -514,7 +622,9 @@ Accept wildcard characters: False
```
### -VpnType
-Virtual Network Type of the ApiManagement Deployment. Valid Values are
+
+Virtual Network Type of the ApiManagement Deployment. Valid Values are
+
- "None" (Default Value. ApiManagement is not part of any Virtual Network")
- "External" (ApiManagement Deployment is setup inside a Virtual Network having an Internet Facing Endpoint)
- "Internal" (ApiManagement Deployment is setup inside a Virtual Network having an Intranet Facing Endpoint)
@@ -533,6 +643,7 @@ Accept wildcard characters: False
```
### -Zone
+
A list of availability zones denoting where the api management service is deployed into.
```yaml
@@ -548,6 +659,7 @@ Accept wildcard characters: False
```
### CommonParameters
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -585,5 +697,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[Remove-AzApiManagement](./Remove-AzApiManagement.md)
[Restore-AzApiManagement](./Restore-AzApiManagement.md)
-
-
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md
index fe8946fd1d2b..af34cbe55283 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md
@@ -20,7 +20,9 @@ New-AzApiManagementApi -Context [-ApiId ] -Name
[-BearerTokenSendingMethod ] [-SubscriptionKeyHeaderName ]
[-SubscriptionKeyQueryParamName ] [-ProductIds ] [-SubscriptionRequired]
[-ApiVersionDescription ] [-ApiVersionSetId ] [-ApiVersion ] [-SourceApiId ]
- [-SourceApiRevision ] [-DefaultProfile ] []
+ [-SourceApiRevision ] [-ApiType ] [-TermsOfServiceUrl ]
+ [-ContactName ] [-ContactUrl ] [-ContactEmail ] [-LicenseName ]
+ [-LicenseUrl ] [-DefaultProfile ] []
```
## DESCRIPTION
@@ -99,6 +101,22 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -ApiType
+Type of API to create (http, soap, websocket, graphql). This parameter is optional.
+
+```yaml
+Type: System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType]
+Parameter Sets: (All)
+Aliases:
+Accepted values: Http, Soap, WebSocket, GraphQL
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -ApiVersion
Api Version of the Api to create. This parameter is optional.
@@ -192,6 +210,51 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -ContactEmail
+The email address of the contact person/organization. MUST be in the format of an email address. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ContactName
+The identifying name of the contact person/organization. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ContactUrl
+The URL pointing to the contact information. MUST be in the format of a URL. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Context
Specifies a **PsApiManagementContext** object.
@@ -237,6 +300,36 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -LicenseName
+The license name used for the API. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -LicenseUrl
+A URL to the Terms of Service for the API. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Name
Specifies the name of the web API.
This is the public name of the API as it appears on the developer and admin portals.
@@ -310,7 +403,7 @@ The default value is $Null.
Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]
Parameter Sets: (All)
Aliases:
-Accepted values: Http, Https
+Accepted values: Http, Https, Ws, Wss
Required: True
Position: Named
@@ -413,6 +506,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -TermsOfServiceUrl
+A URL to the Terms of Service for the API. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md
index 861ea4af0d1e..c84f1aae09d2 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md
@@ -33,6 +33,13 @@ New-AzApiManagementCustomHostnameConfiguration -Hostname -HostnameType
[-DefaultProfile ] []
```
+### SslCertificateManaged
+```
+New-AzApiManagementCustomHostnameConfiguration -Hostname -HostnameType
+ [-DefaultSslBinding] [-NegotiateClientCertificate] [-ManagedCertificate]
+ [-DefaultProfile ] []
+```
+
## DESCRIPTION
The **New-AzApiManagementCustomHostnameConfiguration** cmdlet is a helper command that creates an instance of **PsApiManagementCustomHostNameConfiguration**.
This command is used with the New-AzApiManagement and Set-AzApiManagement cmdlet.
@@ -168,6 +175,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -ManagedCertificate
+Determines whether we want to provision a managed certificate whose rotation is managed by the platform
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: SslCertificateManaged
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -NegotiateClientCertificate
Determines whether the value is a secret and should be encrypted or not.
This parameter is optional.
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md
index fe8918b28bdf..c23c9064d319 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOperation.md
@@ -57,7 +57,12 @@ $Header.Type = 'string'
$Request.Headers = @($Header)
$RequestRepresentation = New-Object -TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation
$RequestRepresentation.ContentType = 'application/json'
-$RequestRepresentation.Sample = '{ "propName": "propValue" }'
+$exp = New-Object –TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementParameterExample
+$exp.Value = "default"
+$exp.Description = "My default request example"
+$exp.ExternalValue = "https://contoso.com"
+$exp.Summary = "default"
+$RequestRepresentation.Examples = @($exp)
$Request.Representations = @($requestRepresentation)
$Response = New-Object -TypeName Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResponse
$Response.StatusCode = 204
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md
index b3300b2aa413..f09e9b87d632 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md
@@ -16,7 +16,7 @@ Creates an instance of PsApiManagementRegion.
```
New-AzApiManagementRegion -Location [-Capacity ]
[-VirtualNetwork ] [-Zone ] [-DisableGateway ]
- [-DefaultProfile ] []
+ [-PublicIpAddressId ] [-DefaultProfile ] []
```
## DESCRIPTION
@@ -115,6 +115,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -PublicIpAddressId
+Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -VirtualNetwork
Virtual Network Configuration of Azure API Management deployment region.
Default value is $null.
diff --git a/src/ApiManagement/ApiManagement/help/Restore-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/Restore-AzApiManagement.md
index 072f3f80085e..e5ca67471adb 100644
--- a/src/ApiManagement/ApiManagement/help/Restore-AzApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/Restore-AzApiManagement.md
@@ -9,22 +9,25 @@ schema: 2.0.0
# Restore-AzApiManagement
## SYNOPSIS
+
Restores an API Management Service from the specified Azure Storage blob.
## SYNTAX
```
Restore-AzApiManagement -ResourceGroupName -Name [-StorageContext]
- -SourceContainerName -SourceBlobName [-PassThru] [-DefaultProfile ]
- []
+ -SourceContainerName -SourceBlobName [-AccessType ] [-IdentityClientId ]
+ [-PassThru] [-DefaultProfile ] []
```
## DESCRIPTION
+
The **Restore-AzApiManagement** cmdlet restores an API Management Service from the specified backup residing in an Azure Storage blob.
## EXAMPLES
### Example 1: Restore an API Management service
+
```powershell
New-AzStorageAccount -StorageAccountName "ContosoStorage" -Location $location -ResourceGroupName "ContosoGroup02" -Type Standard_LRS
$storageKey = (Get-AzStorageAccountKey -ResourceGroupName "ContosoGroup02" -StorageAccountName "ContosoStorage")[0].Value
@@ -34,9 +37,82 @@ Restore-AzApiManagement -ResourceGroupName "ContosoGroup" -Name "RestoredContoso
This command restores an API Management service from Azure storage blob.
+### Example 2: Restore an API Management service using Managed Identity Credentials
+
+``` powershell
+PS D:> $storageContext=New-AzStorageContext -StorageAccountName apimbackupmsi
+PS D:> $resourceGroupName="ContosoGroup02";
+PS D:> $apiManagementName="contosoapi";
+PS D:> $containerName="apimbackupcontainer";
+PS D:> $backupName="test-sdk-backup-1";
+PS D:> $msiClientId="a6270d0c-7d86-478b-8cbe-dc9047ba54f7"
+
+PS D:> Restore-AzApiManagement -ResourceGroupName $resourceGroupName -Name $apiManagementName -StorageContext $storageContext -SourceContainerName $containerName -SourceBlobName $backupName -AccessType "UserAssignedManagedIdentity" -IdentityClientId $msiClientId -PassThru
+
+
+PublicIPAddresses : {52.143.79.150}
+PrivateIPAddresses :
+Id : /subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/ContosoGroup02/providers/Microsoft.ApiManagement/service/contosoapi
+Name : contosoapi
+Location : West US 2
+Sku : Premium
+Capacity : 1
+CreatedTimeUtc : 10/13/2021 5:49:32 PM
+ProvisioningState : Succeeded
+RuntimeUrl : https://contosoapi.azure-api.net
+RuntimeRegionalUrl : https://contosoapi-westus2-01.regional.azure-api.net
+PortalUrl : https://contosoapi.portal.azure-api.net
+DeveloperPortalUrl : https://contosoapi.developer.azure-api.net
+ManagementApiUrl : https://contosoapi.management.azure-api.net
+ScmUrl : https://contosoapi.scm.azure-api.net
+PublisherEmail : foobar@microsoft.com
+OrganizationName : fsdfsdfs
+NotificationSenderEmail : apimgmt-noreply@mail.windowsazure.com
+VirtualNetwork :
+VpnType : None
+PortalCustomHostnameConfiguration :
+ProxyCustomHostnameConfiguration : {contosoapi.azure-api.net}
+ManagementCustomHostnameConfiguration :
+ScmCustomHostnameConfiguration :
+DeveloperPortalHostnameConfiguration :
+SystemCertificates :
+Tags : {}
+AdditionalRegions : {}
+SslSetting : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting
+Identity : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity
+EnableClientCertificate :
+Zone :
+DisableGateway : False
+MinimalControlPlaneApiVersion :
+PublicIpAddressId :
+PlatformVersion : stv2
+PublicNetworkAccess : Enabled
+PrivateEndpointConnections :
+ResourceGroupName : ContosoGroup02
+```
+
+This command restores the API Management service using the Managed Identity credentials of APIM which are whitelisted as StorageBlobContributor on the Azure Storage Account `apimbackupmsi`
+
## PARAMETERS
+### -AccessType
+
+The type of access to be used for the storage account. The default value is AccessKey.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -DefaultProfile
+
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
@@ -51,7 +127,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -IdentityClientId
+
+The Client ID of user assigned managed identity. Required only if accessType is set to UserAssignedManagedIdentity.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Name
+
Specifies the name of the API Management instance that will be restored with the backup.
```yaml
@@ -67,6 +160,7 @@ Accept wildcard characters: False
```
### -PassThru
+
Returns an object representing the item with which you are working.
By default, this cmdlet does not generate any output.
@@ -83,6 +177,7 @@ Accept wildcard characters: False
```
### -ResourceGroupName
+
Specifies the name of resource group under which API Management exists.
```yaml
@@ -98,6 +193,7 @@ Accept wildcard characters: False
```
### -SourceBlobName
+
Specifies the name of the Azure storage backup source blob.
```yaml
@@ -113,6 +209,7 @@ Accept wildcard characters: False
```
### -SourceContainerName
+
Specifies the name of the Azure storage backup source container.
```yaml
@@ -128,6 +225,7 @@ Accept wildcard characters: False
```
### -StorageContext
+
Specifies the storage connection context.
```yaml
@@ -143,6 +241,7 @@ Accept wildcard characters: False
```
### CommonParameters
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -164,5 +263,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[New-AzApiManagement](./New-AzApiManagement.md)
[Remove-AzApiManagement](./Remove-AzApiManagement.md)
-
-
diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md
index 3931368917f0..a14219862e2b 100644
--- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md
@@ -8,6 +8,7 @@ schema: 2.0.0
# Set-AzApiManagement
## SYNOPSIS
+
Updates an Azure Api Management service
## SYNTAX
@@ -24,6 +25,7 @@ The **Set-AzApiManagement** cmdlet updates an Azure API Management service.
## EXAMPLES
### Example 1: Get an API Management service and scale it to Premium and Add a region
+
```powershell
$apim = Get-AzApiManagement -ResourceGroupName "ContosoGroup" -Name "ContosoApi"
$apim.Sku = "Premium"
@@ -35,6 +37,7 @@ Set-AzApiManagement -InputObject $apim
This example gets an Api Management instance, scales it to five premium units and then adds an additional three units to the premium region.
### Example 2: Update deployment (external VNET)
+
```powershell
$virtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId "/subscriptions/a8ff56dc-3bc7-4174-a1e8-3726ab15d0e2/resourceGroups/Api-Default-WestUS/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet"
$apim = Get-AzApiManagement -ResourceGroupName "ContosoGroup" -Name "ContosoApi"
@@ -46,6 +49,7 @@ Set-AzApiManagement -InputObject $apim
This command updates an existing API Management deployment and joins to an external *VpnType*.
### Example 3: Create and initialize an instance of PsApiManagementCustomHostNameConfiguration using an Secret from KeyVault Resource
+
```powershell
$portal = New-AzApiManagementCustomHostnameConfiguration -Hostname "portal.contoso.com" -HostnameType Portal -KeyVaultId "https://apim-test-keyvault.vault.azure.net/secrets/api-portal-custom-ssl.pfx"
$proxy1 = New-AzApiManagementCustomHostnameConfiguration -Hostname "gatewayl.contoso.com" -HostnameType Proxy -KeyVaultId "https://apim-test-keyvault.vault.azure.net/secrets/contoso-proxy-custom-ssl.pfx"
@@ -58,6 +62,7 @@ Set-AzApiManagement -InputObject $apim -SystemAssignedIdentity
```
### Example 4: Update Publisher Email, NotificationSender Email and Organization Name
+
```powershell
$apim = Get-AzApiManagement -ResourceGroupName "api-Default-West-US" -Name "Contoso"
$apim.PublisherEmail = "foobar@contoso.com"
@@ -66,9 +71,91 @@ $apim.OrganizationName = "Contoso"
Set-AzApiManagement -InputObject $apim -PassThru
```
+### Example 5: Add Managed Certificate to an APIM Service
+
+```powershell
+PS D:> $gateway=New-AzApiManagementCustomHostnameConfiguration -Hostname freecertCanary.contoso.api -HostnameType Proxy -ManagedCertificate
+PS D:> $customConfig= @($gateway)
+PS D:> $apim=Get-AzApiManagement -ResourceGroupName contosogroup -Name contosoapim
+PS D:> $apim.ProxyCustomHostnameConfiguration = $customConfig
+PS D:> Set-AzApiManagement -InputObject $apim -PassThru
+
+
+PublicIPAddresses : {20.45.236.81}
+PrivateIPAddresses :
+Id : /subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-
+ Central-US-EUAP/providers/Microsoft.ApiManagement/service/contosoapim
+Name : contosoapim
+Location : Central US EUAP
+Sku : Developer
+Capacity : 1
+CreatedTimeUtc : 8/24/2021 10:40:21 PM
+ProvisioningState : Succeeded
+RuntimeUrl : https://contosoapim.azure-api.net
+RuntimeRegionalUrl : https://contosoapim-centraluseuap-01.regional.azure-api.net
+PortalUrl : https://contosoapim.portal.azure-api.net
+DeveloperPortalUrl : https://contosoapim.developer.azure-api.net
+ManagementApiUrl : https://contosoapim.management.azure-api.net
+ScmUrl : https://contosoapim.scm.azure-api.net
+PublisherEmail : zhonren@microsoft.com
+OrganizationName : Microsoft
+NotificationSenderEmail : apimgmt-noreply@mail.windowsazure.com
+VirtualNetwork :
+VpnType : None
+PortalCustomHostnameConfiguration :
+ProxyCustomHostnameConfiguration : {contosoapim.azure-api.net, freecertCanary..contoso.api}
+ManagementCustomHostnameConfiguration :
+ScmCustomHostnameConfiguration :
+DeveloperPortalHostnameConfiguration :
+SystemCertificates :
+Tags : {}
+AdditionalRegions : {}
+SslSetting : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting
+Identity : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementServiceIdentity
+EnableClientCertificate :
+Zone :
+DisableGateway : False
+MinimalControlPlaneApiVersion :
+PublicIpAddressId :
+PlatformVersion : stv2
+PublicNetworkAccess : Enabled
+PrivateEndpointConnections :
+ResourceGroupName : contosogroup
+
+PS D:> $apim.ProxyCustomHostnameConfiguration
+
+CertificateInformation :
+EncodedCertificate :
+HostnameType : Proxy
+CertificatePassword :
+Hostname : contosoapim.azure-api.net
+KeyVaultId :
+DefaultSslBinding : False
+NegotiateClientCertificate : False
+IdentityClientId :
+CertificateStatus :
+CertificateSource : BuiltIn
+
+CertificateInformation : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementCertificateInformation
+EncodedCertificate :
+HostnameType : Proxy
+CertificatePassword :
+Hostname : freecertCanary.contoso.api
+KeyVaultId :
+DefaultSslBinding : True
+NegotiateClientCertificate : False
+IdentityClientId :
+CertificateStatus :
+CertificateSource : Managed
+
+```
+
+This sample adds a Managed Certificates to an API Management service.
+
## PARAMETERS
### -AsJob
+
Run cmdlet in the background
```yaml
@@ -84,6 +171,7 @@ Accept wildcard characters: False
```
### -DefaultProfile
+
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
@@ -99,6 +187,7 @@ Accept wildcard characters: False
```
### -InputObject
+
The ApiManagement instance.
```yaml
@@ -114,6 +203,7 @@ Accept wildcard characters: False
```
### -PassThru
+
Sends updated PsApiManagement to pipeline if operation succeeds.
```yaml
@@ -129,6 +219,7 @@ Accept wildcard characters: False
```
### -SystemAssignedIdentity
+
Generate and assign an Azure Active Directory Identity for this server for use with key management services like Azure KeyVault.
```yaml
@@ -144,6 +235,7 @@ Accept wildcard characters: False
```
### -UserAssignedIdentity
+
Assign User Identities to this server for use with key management services like Azure KeyVault.
```yaml
@@ -159,6 +251,7 @@ Accept wildcard characters: False
```
### -Confirm
+
Prompts you for confirmation before running the cmdlet.
```yaml
@@ -174,6 +267,7 @@ Accept wildcard characters: False
```
### -WhatIf
+
Shows what would happen if the cmdlet runs. The cmdlet is not run.
```yaml
@@ -189,6 +283,7 @@ Accept wildcard characters: False
```
### CommonParameters
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md
index 92f496235336..1ddd6da40bdf 100644
--- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md
+++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApi.md
@@ -20,6 +20,8 @@ Set-AzApiManagementApi -Context -ApiId [-Name
[-AuthorizationServerId ] [-AuthorizationScope ] [-OpenIdProviderId ]
[-BearerTokenSendingMethod ] [-SubscriptionKeyHeaderName ]
[-SubscriptionKeyQueryParamName ] [-SubscriptionRequired] [-PassThru]
+ [-ApiType ] [-TermsOfServiceUrl ] [-ContactName ]
+ [-ContactUrl ] [-ContactEmail ] [-LicenseName ] [-LicenseUrl ]
[-DefaultProfile ] []
```
@@ -30,6 +32,8 @@ Set-AzApiManagementApi -InputObject [-Name ] [-Desc
[-AuthorizationServerId ] [-AuthorizationScope ] [-OpenIdProviderId ]
[-BearerTokenSendingMethod ] [-SubscriptionKeyHeaderName ]
[-SubscriptionKeyQueryParamName ] [-SubscriptionRequired] [-PassThru]
+ [-ApiType ] [-TermsOfServiceUrl ] [-ContactName ]
+ [-ContactUrl ] [-ContactEmail ] [-LicenseName ] [-LicenseUrl ]
[-DefaultProfile ] []
```
@@ -83,6 +87,22 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -ApiType
+Type of API to create (http, soap, websocket, graphql). This parameter is optional.
+
+```yaml
+Type: System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementApiType]
+Parameter Sets: (All)
+Aliases:
+Accepted values: Http, Soap, WebSocket, GraphQL
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -AuthorizationScope
Specifies the OAuth operations scope.
The default value is $Null.
@@ -131,6 +151,51 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -ContactEmail
+The email address of the contact person/organization. MUST be in the format of an email address. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ContactName
+The identifying name of the contact person/organization. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ContactUrl
+The URL pointing to the contact information. MUST be in the format of a URL. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Context
Specifies a **PsApiManagementContext** object.
@@ -191,6 +256,36 @@ Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
+### -LicenseName
+The license name used for the API. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -LicenseUrl
+A URL to the Terms of Service for the API. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Name
Specifies the name of the web API.
@@ -263,7 +358,7 @@ The default value is $Null.
Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementSchema[]
Parameter Sets: (All)
Aliases:
-Accepted values: Http, Https
+Accepted values: Http, Https, Ws, Wss
Required: False
Position: Named
@@ -336,6 +431,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -TermsOfServiceUrl
+A URL to the Terms of Service for the API. This parameter is optional.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
diff --git a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md
index 1a82b0fd67c3..334fccbfc720 100644
--- a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md
+++ b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md
@@ -16,7 +16,8 @@ Updates existing deployment region in PsApiManagement instance.
```
Update-AzApiManagementRegion -ApiManagement -Location -Sku
-Capacity [-VirtualNetwork ] [-Zone ]
- [-DisableGateway ] [-DefaultProfile ] []
+ [-DisableGateway ] [-PublicIpAddressId ] [-DefaultProfile ]
+ []
```
## DESCRIPTION
@@ -124,6 +125,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -PublicIpAddressId
+Standard SKU PublicIpAddress ResoureId for integration into stv2 Virtual Network Deployments
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Sku
Specifies the new tier value for the deployment region.
Valid values are:
diff --git a/tools/StaticAnalysis/Exceptions/Az.ApiManagement/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.ApiManagement/BreakingChangeIssues.csv
new file mode 100644
index 000000000000..6ce126b6c436
--- /dev/null
+++ b/tools/StaticAnalysis/Exceptions/Az.ApiManagement/BreakingChangeIssues.csv
@@ -0,0 +1,2 @@
+"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"
+"Az.ApiManagement","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementOperation","Get-AzApiManagementOperation","0","3010","The property 'Sample' of type 'Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation' has been removed.","Add the property 'Sample' back to type 'Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementRepresentation'."